Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Release 2.8.0 #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ Python SemVer library
All notable changes to this code base will be documented in this file,
in every released version.

Version 2.8.0
=============
:Released: 2018-05-16
:Maintainer: Sébastien Celles <[email protected]>

* Issue #76 (PR #80). Remove Python 2.6 compatibility
* Issue #79 (PR #81 #84). Define and improve a release procedure file
* Issue #72 #73 (PR #75). Implements __str__ and __hash__
* Issue #82 (PR #83). Rename test.py to test_semver.py so py.test can autodiscover test file

Version 2.7.9
=============

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Primary maintainers
===================

* Kostiantyn Rybnikov <[email protected]>
* Sébastien Celles <[email protected]>


Significant contributors
Expand Down
18 changes: 17 additions & 1 deletion release-procedure.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
* Verify that `__version__` in [semver.py](https://github.com/k-bx/python-semver/blob/master/semver.py) have been updated
* Verify that latest build was passing https://travis-ci.org/k-bx/python-semver

* Verify that `__version__` in [semver.py](https://github.com/k-bx/python-semver/blob/master/semver.py) have been updated and follow https://semver.org/

* Verify that [CHANGELOG](https://github.com/k-bx/python-semver/blob/master/CHANGELOG) have been updated

* If one or several supported Python versions have removed or add, verify that the 3 following files have been updated:
* [setup.py](https://github.com/k-bx/python-semver/blob/master/setup.py)
* [tox.ini](https://github.com/k-bx/python-semver/blob/master/tox.ini)
* [.travis.yml](https://github.com/k-bx/python-semver/blob/master/.travis.yml)

* Verify that doc reflecting new changes have been updated

* Add eventually new contributor(s) to [CONTRIBUTORS](https://github.com/k-bx/python-semver/blob/master/CONTRIBUTORS)

* Tag commit and push to github using command line interface
```bash
git tag -a x.x.x -m 'Version x.x.x'
Expand All @@ -14,3 +27,6 @@ git clean -xfd
python setup.py register sdist bdist_wheel --universal
twine upload dist/*
```

* Go to https://pypi.org/project/semver/ to verify that new version is online and page is rendered correctly

4 changes: 3 additions & 1 deletion semver.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
import re


__version__ = '2.7.9'
__version__ = '2.8.0'
__author__ = 'Kostiantyn Rybnikov'
__author_email__ = '[email protected]'
__maintainer__ = 'Sebastien Celles'
__maintainer_email__ = "[email protected]"

_REGEX = re.compile(
r"""
Expand Down