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
cd nativescript-angular/nativescript-angular && git checkout release && git pull
93
+
```
94
+
#### If we prepare major or minor release, merge master in release branch else **skip this step**.
90
95
```
96
+
git merge --ff-only origin/master
97
+
```
98
+
*** Note: If there are commits in release branch which are not merged in master branch '-ff-merge' command will fail.
99
+
In this case the commits should be merge firstly from release in master branch as explained in section 'Merge changes from release into master' and then repeat step 1.
91
100
92
-
2. Add the following to your `.npmrc`:
101
+
2. Execute `npm i` to install dependencies:
102
+
```
103
+
cd nativescript-angular && npm i
104
+
```
105
+
3. Execute [`npm version`](https://docs.npmjs.com/cli/version) to bump the version:
106
+
```
107
+
npm --no-git-tag-version version [patch|minor|major] -m "release: cut the %s release"
108
+
```
109
+
or
93
110
```
94
-
tag-version-prefix=""
95
-
message="release: cut the %s release"
111
+
npm --no-git-tag-version version [version] --allow-same-version -m "release: cut the %s release"
96
112
```
113
+
NOTE: Check the changelog!!!
97
114
98
-
3. Create new branch for the release:
99
-
```bash
100
-
git checkout -b username/release-version
115
+
7. Create release-branch with change log
116
+
```
117
+
git checkout -b release-[version]
101
118
```
102
119
103
-
4. Execute [`npm version`](https://docs.npmjs.com/cli/version) to bump the version in the `package.json` file, tag the release and update the CHANGELOG.md:
104
-
```bash
105
-
npm version [patch|minor|major]
120
+
7. Add changes
121
+
```
122
+
git add changed-files
123
+
git commit -m "release: cut the %s release"
124
+
git push
125
+
```
126
+
8. Create git tag version with format 0.22.3
106
127
```
128
+
git tag version
129
+
git push --tags
130
+
```
131
+
9. Create a pull request from git in web or try to use script below. Be careful to base your branch on the correct "release" branch
132
+
```
133
+
curl -d '{"title": "release: cut the [version] release","body": "docs: update changelog","head": "[BRANCH]","base": "release"}' -X POST https://api.github.com/repos/NativeScript/nativescript-dev-webpack/pulls -H "Authorization: token ${GIT_TOKEN}"
134
+
```
135
+
10. Merge PR into release branch.
107
136
108
-
5. Push all the changes to your branch and create a pull request:
0 commit comments