Skip to content

Commit

Permalink
docs: update CHANGELOG.md + py file versions for v3.17.2 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara authored and github-actions[bot] committed May 31, 2023
1 parent f902725 commit 897404d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.2] - 2023-05-31
### :bug: Bug Fixes
- [`f902725`](https://github.com/ietf-tools/xml2rfc/commit/f90272530b9e93f98e42c73fd1b6b8eabdf58eab) - Avoid memory issues in BaseV3Writer validator process *(PR [#995](https://github.com/ietf-tools/xml2rfc/pull/995) by [@kesara](https://github.com/kesara))*
- :arrow_lower_right: *fixes issue [#994](undefined) opened by [@kesara](https://github.com/kesara)*

### :memo: Documentation Changes
- [`be9682f`](https://github.com/ietf-tools/xml2rfc/commit/be9682f10ed4cbcced3907d66207dcaa1918fcfa) - update CHANGELOG.md + py file versions for v3.17.1 [skip ci] *(commit by [@kesara](https://github.com/kesara))*


## [v3.17.1] - 2023-04-13
### :bug: Bug Fixes
- [`87e206e`](https://github.com/ietf-tools/xml2rfc/commit/87e206e09271bd9c9771b4d00d5ec7f61fbe8ea1) - Remove extend-to-zoom from viewport in CSS *(PR [#980](https://github.com/ietf-tools/xml2rfc/pull/980) by [@kesara](https://github.com/kesara))*
Expand Down Expand Up @@ -1992,4 +2001,5 @@ This release fixes all outstanding major bugs, details below. The issue tracker
[v3.15.3]: https://github.com/ietf-tools/xml2rfc/compare/v3.15.2...v3.15.3
[v3.16.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.15.3...v3.16.0
[v3.17.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.16.0...v3.17.0
[v3.17.1]: https://github.com/ietf-tools/xml2rfc/compare/v3.17.0...v3.17.1
[v3.17.1]: https://github.com/ietf-tools/xml2rfc/compare/v3.17.0...v3.17.1
[v3.17.2]: https://github.com/ietf-tools/xml2rfc/compare/v3.17.1...v3.17.2
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = xml2rfc
version = 3.17.1
version = 3.17.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
Expand Down
2 changes: 1 addition & 1 deletion xml2rfc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import unicode_literals, print_function, division

# Static values
__version__ = '3.17.1'
__version__ = '3.17.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
Expand Down

0 comments on commit 897404d

Please sign in to comment.