Skip to content

Commit 2af6d37

Browse files
committed
docs: update CHANGELOG.md + py file versions for v3.28.0 [skip ci]
1 parent 3b71fcb commit 2af6d37

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v3.28.0] - 2025-03-01
9+
### :sparkles: New Features
10+
* feat: Remove warning about SVG width and height by @martinthomson in https://github.com/ietf-tools/xml2rfc/pull/1225
11+
12+
### :wrench: Chores
13+
* docs: Update installation instructions by @kesara in https://github.com/ietf-tools/xml2rfc/pull/1221
14+
* ci: Remove setup.cfg publish commit step by @kesara in https://github.com/ietf-tools/xml2rfc/pull/1220
15+
* chore(deps): Update WeasyPrint to v64.1 by @kesara in https://github.com/ietf-tools/xml2rfc/pull/1215
16+
* chore: Add ACKNOWLEDGMENTS.md file by @kesara in https://github.com/ietf-tools/xml2rfc/pull/1214
17+
818

919
## [v3.27.0] - 2025-02-09
1020
### :sparkles: New Features
@@ -2377,3 +2387,4 @@ This release fixes all outstanding major bugs, details below. The issue tracker
23772387
[v3.25.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.24.0...v3.25.0
23782388
[v3.26.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.25.0...v3.26.0
23792389
[v3.27.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.26.0...v3.27.0
2390+
[v3.28.0]: https://github.com/ietf-tools/xml2rfc/compare/v3.27.0...v3.28.0

xml2rfc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import unicode_literals, print_function, division
44

55
# Static values
6-
__version__ = '3.27.0'
6+
__version__ = '3.28.0'
77
NAME = 'xml2rfc'
88
VERSION = [ int(i) if i.isdigit() else i for i in __version__.split('.') ]
99
CACHES = ['/var/cache/xml2rfc', '~/.cache/xml2rfc'] # Ordered by priority

0 commit comments

Comments
 (0)