Skip to content

Commit

Permalink
Release 7.3: Update bundled releases & miscellaneous changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Sep 15, 2021
1 parent 71be4d6 commit 8133548
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,30 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 7.3`_ (2021-09-15)
---------------------------

**Significant changes:**

- Updated the releases bundled in the :mod:`~apt_mirror_updater.releases`
module to include the following:

- Ubuntu 20.10 (Groovy Gorilla)
- Ubuntu 21.04 (Hirsute Hippo)
- Ubuntu 21.10 (Impish Indri)

- Relaxed the :pypi:`beautifulsoup4` requirement to facilitate Python 2
compatibility (release 4.9.3 was the last to support Python 2 whereas
our requirements insisted on >= 4.4.1).

**Miscellaenous changes:**

- Updated the :func:`~apt_mirror_updater.releases.parse_version()` documentation
to refer to :class:`decimal.Decimal` instead of "a floating point number" (to
avoid any confusion).

.. _Release 7.3: https://github.com/xolox/python-apt-mirror-updater/compare/7.2...7.3

`Release 7.2`_ (2020-04-18)
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions apt_mirror_updater/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Automated, robust apt-get mirror selection for Debian and Ubuntu.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: April 18, 2020
# Last Change: September 15, 2021
# URL: https://apt-mirror-updater.readthedocs.io

"""
Expand Down Expand Up @@ -48,7 +48,7 @@
from apt_mirror_updater.releases import coerce_release

# Semi-standard module versioning.
__version__ = '7.2'
__version__ = '7.3'

MAIN_SOURCES_LIST = '/etc/apt/sources.list'
"""The absolute pathname of the list of configured APT data sources (a string)."""
Expand Down

0 comments on commit 8133548

Please sign in to comment.