summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.adoc6
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 654fc4f..8042715 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -3,6 +3,12 @@ AsciiDoc ChangeLog
:website: https://asciidoc-py.github.io/
+Version 10.1.4 (2022-03-01)
+---------------------------
+.Bug fixes
+- Add missing test py files to dist archives
+- Fix DeprecationWarnings in a2x regexes
+
Version 10.1.3 (2022-02-20)
---------------------------
.Bug fixes
diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py
index fc649e2..3ad90ce 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 1, 3)
+VERSION = (10, 1, 4)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index fa67643..a5d1ea5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 10.1.3)
+AC_INIT(asciidoc, 10.1.4)
-AC_SUBST([PACKAGE_DATE], ['20 February 2022'])
+AC_SUBST([PACKAGE_DATE], ['01 March 2022'])
AC_CONFIG_FILES(Makefile)