Skip to content
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
12 changes: 8 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ Change Log
All notable changes to this code base will be documented in this file,
in every released version.

Version 2.9.1 (WIP)
===================
:Released: 20xy-xy-xy
:Maintainer: ...

Version 2.9.1
=============
:Released: 2020-02-16
:Maintainer: Tom Schraitle

Features
--------
Expand All @@ -34,6 +35,9 @@ Bug Fixes
Removals
--------

not available


Version 2.9.0
=============
:Released: 2019-10-30
Expand Down
10 changes: 8 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
include README.rst
include LICENSE.txt
include *.rst
include *.txt
include test_*.py

exclude .travis.yml
prune docs/_build
recursive-exclude .github *

global-exclude *.py[cod] __pycache__ *.so *.dylib
13 changes: 13 additions & 0 deletions release-procedure.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,19 @@ Release procedure

* Ensure that long description (ie [README.rst](https://github.com/python-semver/python-semver/blob/master/README.rst)) can be correctly rendered by Pypi using `restview --long-description`

* Upload it to TestPyPI first:

```bash
git clean -xfd
python setup.py register sdist bdist_wheel --universal
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
```

If you have a `~/.pypirc` with a `testpyi` section, the upload can be
simplified:

twine upload --repository testpyi dist/*

* Upload to PyPI

```bash
Expand Down
4 changes: 2 additions & 2 deletions semver.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
import sys


__version__ = "2.9.0"
__version__ = "2.9.1"
__author__ = "Kostiantyn Rybnikov"
__author_email__ = "k-bx@k-bx.com"
__maintainer__ = "Sebastien Celles"
__maintainer__ = ["Sebastien Celles", "Tom Schraitle"]
__maintainer_email__ = "s.celles@gmail.com"

_REGEX = re.compile(
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ def read_file(filename):
include_package_data=True,
license="BSD",
classifiers=[
# See https://pypi.org/pypi?%3Aaction=list_classifiers
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
Expand Down