Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2.2' into 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 30, 2018
2 parents e02a1ee + 4c4519a commit 003a5a7
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion docs/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,33 @@ fdescribe('...', function() {
## Create a package on npm
Set the version in the `package.json` file.
```
git checkout master
git fetch origin
git reset --hard origin/master
```
Create a tag named the same as the version.
```
git tag <version>
git push origin <version>
```
Travis will create a new package on npm.
If you create a new release, bump version in the package.json file:
```
git checkout -b bump
vi package.json
git add package.json
git commit -m "Bump version to 2.2.x+1"
git push origin bump
```
Do the pull request
## Create a new stabilisation branch
When we create a new stabilisation branch we should also duplicate the localisation.
Expand Down

0 comments on commit 003a5a7

Please sign in to comment.