Skip to content

Commit bdd2c34

Browse files
committed
Bump version and changelog for release
Also add a `RELEASING.md` doc, which can record the procedure as it changes over time. (e.g. releases driven via CI)
1 parent 999f98f commit bdd2c34

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

RELEASING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Releasing nose2
2+
---------------
3+
4+
- Update the version in `nose2/__init__.py`
5+
- Update `changelog.rst`
6+
- Commit changes
7+
- Run `make release`

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ nose2 uses semantic versioning (currently in 0.x) and the popular
55
"keep a changelog" format (v1.0.0).
66

77
nose2 tries not to break backwards compatibility in any release. Until v1.0,
8-
versions are numbered `0.MAJOR.MINOR`. Major releases introduce new
8+
versions are numbered ``0.MAJOR.MINOR``. Major releases introduce new
99
functionality or contain necessary breaking changes. Minor releases are
1010
primarily used for bugfix or small features which are unlikely to break users'
1111
testsuites.
1212

13-
0.13.0 (Unreleased)
13+
0.13.0 (2023-04-29)
1414
-------------------
1515

1616
* Remove support for python2 and older python3 versions

nose2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from nose2.main import discover, main
22

3-
__version__ = "0.12.0"
3+
__version__ = "0.13.0"
44

55
__all__ = ("__version__", "discover", "main")

0 commit comments

Comments
 (0)