Lines Matching +full:- +full:- +full:single +full:- +full:branch
3 To release new `<version>` of `kotlinx-atomicfu`:
5 1. Checkout `develop` branch: <br>
11 3. Make sure the `master` branch is fully merged into `develop`:
14 4. Search & replace `<old-version>` with `<version>` across the project files. Should replace in:
19 As an alternative approach you can use `./bump-version.sh old_version new_version`
23 * Write each change on a single line (don't wrap with CR).
26 6. Create branch for this release:
27 `git checkout -b version-<version>`
29 7. Commit updated files to a new version branch:<br>
30 `git commit -a -m "Version <version>"`
32 8. Push new version into the branch:<br>
33 `git push -u origin version-<version>`
35 9. Create Pull-Request on GitHub from `version-<version>` branch into `master`:
40 10. Merge new version branch into `master`:<br>
42 `git merge version-<version>`<br>
47 * Wait until "Build" configuration for committed `master` branch passes tests.
58 14. Switch into `develop` branch:<br>