diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f85c21a5..5274de20a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v3.12.9] - 2022-06-02 +### :bug: Bug Fixes +- [`1643d68`](https://github.com/ietf-tools/xml2rfc/commit/1643d6845e2309f79f4ddc34f22749372b359a2b) - Display long ASCII art correctly in PDF *(PR [#788](https://github.com/ietf-tools/xml2rfc/pull/788) by [@kesara](https://github.com/kesara))* + + ## [v3.12.8] - 2022-05-25 ### ✨ New Features - [`51e8b24`](https://github.com/ietf-tools/xml2rfc/commit/51e8b24fd25e5cffaadba415374aa7e5cc24c9a8) - Add support for Python 3.10 *(PR [#772](https://github.com/ietf-tools/xml2rfc/pull/772) by [@dkg](https://github.com/dkg))* @@ -1819,3 +1824,5 @@ This release fixes all outstanding major bugs, details below. The issue tracker [v3.12.6]: https://github.com/ietf-tools/xml2rfc/compare/v3.12.5...v3.12.6 [v3.12.7]: https://github.com/ietf-tools/xml2rfc/compare/v3.12.6...v3.12.7 [v3.12.8]: https://github.com/ietf-tools/xml2rfc/compare/v3.12.7...v3.12.8 + +[v3.12.9]: https://github.com/ietf-tools/xml2rfc/compare/v3.12.8...v3.12.9 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index abc452d4c..2bd1ec400 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 3.12.8 +version = 3.12.9 [bdist_wheel] universal = 1 diff --git a/xml2rfc/__init__.py b/xml2rfc/__init__.py index 3eb8f8b28..12fd16fed 100644 --- a/xml2rfc/__init__.py +++ b/xml2rfc/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals, print_function, division # Static values -__version__ = '3.12.8' +__version__ = '3.12.9' NAME = 'xml2rfc' VERSION = [ int(i) if i.isdigit() else i for i in __version__.split('.') ] CACHES = ['/var/cache/xml2rfc', '~/.cache/xml2rfc'] # Ordered by priority