From 0a5b463c5af9763dae25d7c706c236e3aa3cdd74 Mon Sep 17 00:00:00 2001 From: rjsparks Date: Thu, 12 Oct 2023 11:39:57 +0000 Subject: [PATCH] docs: update CHANGELOG.md + py file versions for v3.18.2 [skip ci] --- CHANGELOG.md | 12 +++++++++++- setup.cfg | 2 +- xml2rfc/__init__.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 847df26b..ae1d5ba9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.18.2] - 2023-10-12 +### :bug: Bug Fixes +- [`cb10344`](https://github.com/ietf-tools/xml2rfc/commit/cb103440813166343ded946f3a6c007497da12bf) - Respect newline attr on dl tag *(PR [#1047](https://github.com/ietf-tools/xml2rfc/pull/1047) by [@jennifer-richards](https://github.com/jennifer-richards))* + - :arrow_lower_right: *fixes issue [#1045](undefined) opened by [@lbartholomew-rpc](https://github.com/lbartholomew-rpc)* + +### :memo: Documentation Changes +- [`ff2ceff`](https://github.com/ietf-tools/xml2rfc/commit/ff2ceff11459cf39296988e0cd4db4cd4f0149dd) - update CHANGELOG.md + py file versions for v3.18.1 [skip ci] *(commit by [@kesara](https://github.com/kesara))* + + ## [v3.18.1] - 2023-09-29 ### :bug: Bug Fixes - [`02253d8`](https://github.com/ietf-tools/xml2rfc/commit/02253d8c7dbd8c3bcf2a7d60ae7dc0c71c78d73d) - **text**: Preserve NBSP in dd *(PR [#1023](https://github.com/ietf-tools/xml2rfc/pull/1023) by [@kesara](https://github.com/kesara))* @@ -2080,4 +2089,5 @@ This release fixes all outstanding major bugs, details below. The issue tracker [v3.17.4]: https://github.com/ietf-tools/xml2rfc/compare/v3.17.3...v3.17.4 [v3.17.5]: https://github.com/ietf-tools/xml2rfc/compare/v3.17.4...v3.17.5 [v3.18.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.17.5...v3.18.0 -[v3.18.1]: https://github.com/ietf-tools/xml2rfc/compare/v3.18.0...v3.18.1 \ No newline at end of file +[v3.18.1]: https://github.com/ietf-tools/xml2rfc/compare/v3.18.0...v3.18.1 +[v3.18.2]: https://github.com/ietf-tools/xml2rfc/compare/v3.18.1...v3.18.2 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index ef7c2c8c..d5909f60 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = xml2rfc -version = 3.18.1 +version = 3.18.2 description = xml2rfc generates RFCs and IETF drafts from document source in XML according to the IETF xml2rfc v2 and v3 vocabularies. long_description = file: README.md long_description_content_type = text/markdown diff --git a/xml2rfc/__init__.py b/xml2rfc/__init__.py index dbd7b4f5..5f81ef8f 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.18.1' +__version__ = '3.18.2' NAME = 'xml2rfc' VERSION = [ int(i) if i.isdigit() else i for i in __version__.split('.') ] CACHES = ['/var/cache/xml2rfc', '~/.cache/xml2rfc'] # Ordered by priority