Skip to content

Commit

Permalink
Bump version and changelog for release
Browse files Browse the repository at this point in the history
Also add a `RELEASING.md` doc, which can record the procedure as it
changes over time. (e.g. releases driven via CI)
  • Loading branch information
sirosen committed Apr 29, 2023
1 parent 999f98f commit bdd2c34
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Releasing nose2
---------------

- Update the version in `nose2/__init__.py`
- Update `changelog.rst`
- Commit changes
- Run `make release`
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ nose2 uses semantic versioning (currently in 0.x) and the popular
"keep a changelog" format (v1.0.0).

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

0.13.0 (Unreleased)
0.13.0 (2023-04-29)
-------------------

* Remove support for python2 and older python3 versions
Expand Down
2 changes: 1 addition & 1 deletion nose2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from nose2.main import discover, main

__version__ = "0.12.0"
__version__ = "0.13.0"

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

0 comments on commit bdd2c34

Please sign in to comment.