Updated Release Procedure (markdown)

Andreas Hocevar
2020-02-11 16:29:01 +01:00
parent 15e9fac798
commit 15bcb91b9b
+6 -5
@@ -65,11 +65,11 @@ Run the `publish.sh` task with the version number as specified in the `package.j
### Bump the patch version number ### Bump the patch version number
Check out master again: This is to allow users to update to ol@dev seamlessly. Create a branch:
git checkout openlayers/master -b master git checkout openlayers/master -b dev-3.1.1
To allow updates to ol@dev, edit `package.json` and bump the patch version number, e.g. edit `package.json` and bump the patch version number, e.g.
```json ```json
{ {
"name": "openlayers", "name": "openlayers",
@@ -80,11 +80,12 @@ Propagate this change to `package-lock.json`:
npm install npm install
Commit and push this directly to master: Commit and push this change:
git add package.json package-lock.json git add package.json package-lock.json
git commit -m "Developing on 3.1.1" git commit -m "Developing on 3.1.1"
git push openlayers master
Create a pull request, review the changes, and merge the branch.
### Update website ### Update website