Skip to content

Commit

Permalink
0.10.0 (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas authored Oct 29, 2020
1 parent b7e96f3 commit 4710b86
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
24 changes: 23 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,28 @@ interpreter (and only the Python3 package installs scripts)::
News
----

* 2020-10-28: **Version 0.10.0**. See the `download page
<https://pypi.python.org/pypi/stdeb/0.10.0>`__.

* Bugfixes:

* add sleep between PyPI API calls to avoid rate limit (#173)

* Improvements:

* use SOURCE_DATE_EPOCH if set for timestamp in generated changelog to
generate reproducbile artifacts (#166)
* update debhelper compat version from 7 to 9 (#158)
* added flag --with-dh-systemd (#162)
* add support for DEBEMAIL envvar (#168)
* use setuptools "url" field for "Homepage" field in debian/control (#169)
* dh_virtualenv: specify Python version (#165)
* added compat flag to modify Debian compatibility level (#163)

* Cosmetic:
* remove excess newlines from debian/control and rules file (#167)
* use flake8 to check style in Travis CI, update code to comply (#171)

* 2020-06-11: **Version 0.9.1**. See the `download page
<https://pypi.python.org/pypi/stdeb/0.9.1>`__.

Expand Down Expand Up @@ -476,7 +498,7 @@ to install a more recent stdeb.

::

STDEB_VERSION="0.9.1"
STDEB_VERSION="0.10.0"

# Download stdeb
wget http://pypi.python.org/packages/source/s/stdeb/stdeb-$STDEB_VERSION.tar.gz
Expand Down
6 changes: 6 additions & 0 deletions RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
See the News section in the README for more details.

Release 0.10.0
==============

The default Debian compat version has been changed from 7 to 9 as well as new
options and features.

Release 0.9.1
=============

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name='stdeb',
# Keep version in sync with stdeb/__init__.py and install section
# of README.rst.
version='0.9.1',
version='0.10.0',
author='Andrew Straw',
author_email='[email protected]',
description='Python to Debian source package conversion utility',
Expand Down
2 changes: 1 addition & 1 deletion stdeb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
__version__ = '0.9.1' # keep in sync with ../setup.py
__version__ = '0.10.0' # keep in sync with ../setup.py

log = logging.getLogger('stdeb')
log.setLevel(logging.INFO)
Expand Down

0 comments on commit 4710b86

Please sign in to comment.