Skip to content
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

0.10.1 #206

Merged
merged 1 commit into from
Nov 14, 2024
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
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