Skip to content

Commit

Permalink
0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearsandwich committed Nov 14, 2024
1 parent 74a5f7a commit fbe2834
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
32 changes: 31 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,36 @@ interpreter (and only the Python3 package installs scripts)::
News
----

* 2024-11-14: **Version 0.10.1**. See the `download page
<https://pypi.python.org/pypi/stdeb/0.10.1>`__.
This is the last planned release of stdeb which supports running stdeb
scripts with Python 2.7. Generating Python 2 packages with future releases
will be maintained on a best-effort basis. Users of stdeb's Python 2 support
are encouraged to report issues and provide test cases which can be added to
CI.

* Bugfixes:

* Fix udev rule filenames for automatic dh_installudev recognition. (#180)

* Improvements:

* The ``--sign-key`` argument can now be used to provide an alternative key
rather than always signing with the default key. (#187)

* Switch PyPI API usage to JSON and "Simple" APIs now that the XML-RPC API is deprecated. (#201, #202)

* Detect and use the current binary name for Python 2. (#203)
Ubuntu Focal and Ubuntu Jammy install a `python2` binary when the
`python-all-dev` package is installed. Rather than assuming that the
`python` binary is available and is Python 2, check for a `python` or
`python2` binary and use what is found.

* Development changes:

* Continuous Integration is now run on GitHub Actions using Earthly. (#199)
* Use ruff for style and lint checks (currently not enforced). (#199)

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

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

::

STDEB_VERSION="0.10.0"
STDEB_VERSION="0.10.1"

# Download stdeb
pypi-download stdeb --release=$STDEB_VERSION
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.10.0',
version='0.10.1',
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.10.0' # keep in sync with ../setup.py
__version__ = '0.10.1' # keep in sync with ../setup.py

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

0 comments on commit fbe2834

Please sign in to comment.