You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Make sure current master branch is green on [Circle](https://circleci.com/gh/facebook/fbkpm) and [Travis](https://travis-ci.com/facebook/fbkpm/builds)
4
+
* Create a new release branch `get checkout -b 0.x-stable`, e.g 0.7-stable
5
+
* Tag the new release `npm version minor`, it will create a commit with changed package.json and tag `v0.xx.0` to that commit
6
+
* Push to origin `git push origin 0.x-stable --tags`
7
+
8
+
## To patch existing version of kpm
9
+
10
+
* Switch to released branch `get checkout 0.x-stable`, e.g 0.7-stable
11
+
* Cherry-pick fixes from master branch
12
+
* Tag the new release `npm version patch`, it will create a commit with changed package.json and tag `v0.xx.1` to that commit
13
+
* Push to origin `git push origin 0.x-stable --tags`
0 commit comments