From 9bb083349e66a6b7195675b04e9adb2d6e21093f Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Mon, 20 Dec 2021 14:52:47 -0500 Subject: Bump version to 10.1.1 Signed-off-by: Matthew Peveler --- CHANGELOG.adoc | 7 +++++++ asciidoc/__metadata__.py | 2 +- configure.ac | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 5c17413..a6fdbd2 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -3,6 +3,13 @@ AsciiDoc ChangeLog :website: https://asciidoc-py.github.io/ +Version 10.1.1 (2021-12-20) +--------------------------- +.Bug fixes +- Fix RuntimeWarning when executing asciidoc or a2x within repository +- Fix index out of range error in a2x (thanks @osmith42) + + Version 10.1.0 (2021-12-17) --------------------------- .Features diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py index a9b3a7b..10d835d 100644 --- a/asciidoc/__metadata__.py +++ b/asciidoc/__metadata__.py @@ -1,5 +1,5 @@ """Module containing metadata about asciidoc.""" -VERSION = (10, 1, 0) +VERSION = (10, 1, 1) __version__ = '.'.join(map(str, VERSION)) diff --git a/configure.ac b/configure.ac index e605f04..ed28835 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ -AC_INIT(asciidoc, 10.1.0) +AC_INIT(asciidoc, 10.1.1) -AC_SUBST([PACKAGE_DATE], ['17 December 2021']) +AC_SUBST([PACKAGE_DATE], ['20 December 2021']) AC_CONFIG_FILES(Makefile) -- cgit v1.2.1