From 643fe04a0bba475e38223f83565ccf876816fdd0 Mon Sep 17 00:00:00 2001 From: m Date: Thu, 28 Nov 2019 11:59:18 +0800 Subject: [PATCH] Bump version & changelog --- CHANGELOG.rst | 9 +++++++++ apt_smart/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f32f656..61e4398 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,6 +11,15 @@ to `semantic versioning`_. .. _Keep a Changelog: http://keepachangelog.com/ .. _semantic versioning: http://semver.org/ +`Release 7.1.2`_ (2019-11-28) +----------------------------- + +- Support Python 3.8 +- Add `-C --codename` flag to create chroot with a distribution codename. +- Blacklist BASE_URL mirror if matches blacklist pattern, this helps when BASE_URL (official) mirror is the only up-to-date one and you find it so slow that you'd like to blacklist it. + +.. _Release 7.1.2: https://github.com/martin68/apt-smart/compare/7.1.1...7.1.2 + `Release 7.1.1`_ (2019-11-04) ----------------------------- diff --git a/apt_smart/__init__.py b/apt_smart/__init__.py index 6c277e3..b8723dc 100644 --- a/apt_smart/__init__.py +++ b/apt_smart/__init__.py @@ -58,7 +58,7 @@ from apt_smart.releases import discover_releases # Semi-standard module versioning. -__version__ = '7.1.1' +__version__ = '7.1.2' SOURCES_LIST_ENCODING = 'UTF-8' """The text encoding of :attr:`main_sources_list` (a string)."""