File: release_notes.txt

package info (click to toggle)
refnx 0.1.60-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,972 kB
  • sloc: python: 37,056; cpp: 1,015; ansic: 185; makefile: 180; sh: 130; lisp: 89; xml: 34
file content (33 lines) | stat: -rw-r--r-- 917 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
General release instructions
----------------------------

# make sure we're up to data
- git fetch refnx
- git checkout main
- git rebase refnx/main
- git clean -xdf (no detritus left over)

# a feature branch for the release
- git checkout -B <feature name>
- if necessary bump version number in setup.py, but only do it once
- change ISRELEASED to True in setup.py
- git commit -a -m'REL: vX.Y.Z'
- git push origin <feature name>

# once the CI has passed
- merge the feature branch
- git fetch refnx
- git checkout main
- git rebase refnx/main

# tag the release and put it onto github
# with the automated release process this should be done automatically
- git tag -a vX.Y.Z
- git push refnx vX.Y.Z

# Epilogue
- git checkout main
- make sure ISRELEASED is False in setup.py, bump version number, create new
  section in CHANGELOG.
- git commit -a -m'MAINT: bump version number [ci skip]'
- git push refnx main