summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-12-20 14:52:47 -0500
committerMatthew Peveler <matt.peveler@gmail.com>2021-12-20 14:52:47 -0500
commit9bb083349e66a6b7195675b04e9adb2d6e21093f (patch)
tree546c5811f9a634d4138411fbd8384cc2318a9d42
parentec53f095bdac9cb55643579eb47f801e73d185e1 (diff)
downloadasciidoc-py3-9bb083349e66a6b7195675b04e9adb2d6e21093f.tar.gz
Bump version to 10.1.110.1.1
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.adoc7
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
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)