From 46a58b19900ad69ba6c676a28ce309ca8233d0c8 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Fri, 17 Dec 2021 17:21:44 -0500 Subject: Bump version to 10.1.0 Signed-off-by: Matthew Peveler --- CHANGELOG.adoc | 9 +++++++++ asciidoc/__metadata__.py | 2 +- configure.ac | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 76c8064..5c17413 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -3,6 +3,15 @@ AsciiDoc ChangeLog :website: https://asciidoc-py.github.io/ +Version 10.1.0 (2021-12-17) +--------------------------- +.Features +- Add top-level `__version__` and `VERSION` module exports (thanks @tbpassin) + +.Bug fixes +- Fix self reference errors in AsciiDocApi (thanks @tbpassin) +- Add back asciidoc execute print in a2x verbose + Version 10.0.2 (2021-11-12) --------------------------- .Bug fixes diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py index e961cc0..a9b3a7b 100644 --- a/asciidoc/__metadata__.py +++ b/asciidoc/__metadata__.py @@ -1,5 +1,5 @@ """Module containing metadata about asciidoc.""" -VERSION = (10, 0, 2) +VERSION = (10, 1, 0) __version__ = '.'.join(map(str, VERSION)) diff --git a/configure.ac b/configure.ac index 3cc2da8..e605f04 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ -AC_INIT(asciidoc, 10.0.2) +AC_INIT(asciidoc, 10.1.0) -AC_SUBST([PACKAGE_DATE], ['28 October 2021']) +AC_SUBST([PACKAGE_DATE], ['17 December 2021']) AC_CONFIG_FILES(Makefile) -- cgit v1.2.1