Skip to content

Commit bfb5f4a

Browse files
docs: update contribution change log
1 parent d4739f5 commit bfb5f4a

3 files changed

+93
-20
lines changed

CONTRIBUTING.md

+93-20
Original file line numberDiff line numberDiff line change
@@ -81,36 +81,109 @@ If you want to contribute, but you are not sure where to start - look for [issue
8181

8282
## Publishing new versions
8383

84-
Instructions how to publish a new version for Maintainers.
8584

86-
1. Execute `npm install` to install dependencies and prepare the package for publishing:
87-
```bash
88-
cd nativescript-angular/nativescript-angular
89-
npm install
85+
## <a name="release"></a> Releasing new versions
86+
Instructions how to release a new version for **NativeScript Core Team Members**.
87+
88+
![](./release-contribution-guide-schema-webpack.png?raw=true)
89+
90+
1. Checkout release branch
91+
```
92+
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**.
9095
```
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.
91100

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
93110
```
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"
96112
```
113+
NOTE: Check the changelog!!!
97114

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]
101118
```
102119

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
106127
```
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.
107136

108-
5. Push all the changes to your branch and create a pull request:
109-
```bash
110-
git push --set-upstream origin username/release-version --tags
137+
11. If all checks has passed publish package. Usually the night builds will be triggered and the package will be ready to be released on the next day.
138+
12. Don't forget to tag the release branch
139+
```
140+
git tag [version]
141+
git push tags
142+
```
143+
Tips to remove tags:
144+
```
145+
git push --delete origin [version]
146+
git tag -d [version]
111147
```
112148

113-
6. Publish the package to `npm` after the pull request is merged:
114-
```bash
115-
npm publish
149+
## Merge changes from release into master
150+
151+
![](./merge-guidance-schema.png)
152+
153+
### Here are steps described in the diagram above.
154+
155+
1. Make sure you are in release branch:
156+
```
157+
git checkout release
158+
git pull
159+
```
160+
2. Create PR to merge changes back in master and preserve history:
161+
```
162+
git checkout -b merge-release-in-master-branch
163+
git push --set-upstream origin merge-release-in-master-branch
164+
git merge origin/master
165+
```
166+
3. Resolve conflicts. Choose to keep the version of master branch. If it is needed to revert versions of modules, see at the bottom.
167+
168+
4. Add conflicts:
169+
```
170+
git add resolved files
171+
```
172+
5. Commit changes with default merge message:
173+
```
174+
git commit
175+
git push
176+
```
177+
178+
6. Create pull request. Replace replace env merge-release-in-master-branch with its value
179+
```
180+
curl -d '{"title": "chore: merge release in master","body": "chore: merge release in master","head": "merge-release-in-master","base": "master"}' -X POST https://api.github.com/repos/NativeScript/NativeScript/pulls -H "Authorization: token ${GIT_TOKEN}"
181+
```
182+
183+
**If needed, revert version of modules and platform declarations to take the one from master:**
184+
```
185+
git checkout origin/master nativescript-angular/package.json
186+
git commit --amend
187+
git push --force-with-lease
116188
```
189+
This will require to repeat steps from 1 to 4, since we need to keep the branches with the same history

merge-guidance-schema.png

63.1 KB
Loading
94.7 KB
Loading

0 commit comments

Comments
 (0)