Skip to content

Commit e4e9e55

Browse files
author
scls19fr
authored
Release 2.8.0 (#84)
Closes #79
1 parent e6d4ff5 commit e4e9e55

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ Python SemVer library
88
All notable changes to this code base will be documented in this file,
99
in every released version.
1010

11+
Version 2.8.0
12+
=============
13+
:Released: 2018-05-16
14+
:Maintainer: Sébastien Celles <s.celles@gmail.com>
15+
16+
* Issue #76 (PR #80). Remove Python 2.6 compatibility
17+
* Issue #79 (PR #81 #84). Define and improve a release procedure file
18+
* Issue #72 #73 (PR #75). Implements __str__ and __hash__
19+
* Issue #82 (PR #83). Rename test.py to test_semver.py so py.test can autodiscover test file
20+
1121
Version 2.7.9
1222
=============
1323

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Primary maintainers
1515
===================
1616

1717
* Kostiantyn Rybnikov <k-bx@k-bx.com>
18+
* Sébastien Celles <s.celles@gmail.com>
1819

1920

2021
Significant contributors

release-procedure.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1-
* Verify that `__version__` in [semver.py](https://github.com/k-bx/python-semver/blob/master/semver.py) have been updated
1+
* Verify that latest build was passing https://travis-ci.org/k-bx/python-semver
2+
3+
* 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/
4+
25
* Verify that [CHANGELOG](https://github.com/k-bx/python-semver/blob/master/CHANGELOG) have been updated
6+
7+
* If one or several supported Python versions have removed or add, verify that the 3 following files have been updated:
8+
* [setup.py](https://github.com/k-bx/python-semver/blob/master/setup.py)
9+
* [tox.ini](https://github.com/k-bx/python-semver/blob/master/tox.ini)
10+
* [.travis.yml](https://github.com/k-bx/python-semver/blob/master/.travis.yml)
11+
12+
* Verify that doc reflecting new changes have been updated
13+
14+
* Add eventually new contributor(s) to [CONTRIBUTORS](https://github.com/k-bx/python-semver/blob/master/CONTRIBUTORS)
15+
316
* Tag commit and push to github using command line interface
417
```bash
518
git tag -a x.x.x -m 'Version x.x.x'
@@ -14,3 +27,6 @@ git clean -xfd
1427
python setup.py register sdist bdist_wheel --universal
1528
twine upload dist/*
1629
```
30+
31+
* Go to https://pypi.org/project/semver/ to verify that new version is online and page is rendered correctly
32+

semver.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
import re
77

88

9-
__version__ = '2.7.9'
9+
__version__ = '2.8.0'
1010
__author__ = 'Kostiantyn Rybnikov'
1111
__author_email__ = 'k-bx@k-bx.com'
12+
__maintainer__ = 'Sebastien Celles'
13+
__maintainer_email__ = "s.celles@gmail.com"
1214

1315
_REGEX = re.compile(
1416
r"""

0 commit comments

Comments
 (0)