File: RELEASE.md

package info (click to toggle)
pcs 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,148 kB
  • sloc: python: 238,810; xml: 20,833; ruby: 13,203; makefile: 1,595; sh: 484
file content (24 lines) | stat: -rw-r--r-- 749 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## How to release new pcs version

### Bump changelog version

* Run `make -f make/release.mk bump-changelog version=<version>`.
  * This will create commit with updated CHANGELOGE.md
* Merge commit to upstream (via PR or push it directly)

### Create tarballs with new release version

* Run
  `make -f make/release.mk tarballs version=<version>
  "configure_options=--enable-local-build"`
  * The <version> should be next pcs version (e.g. version=0.10.9)
* Test generated tarballs

### Create annotated tag

* Run
  `make -f make/release.mk tag version=<version>
  "configure_options=--enable-local-build" release=yes`
* If your upstream remote branch is origin, run
  `make -f make/release.mk publish release=yes`
  or `git push <remote> <tag>`