summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.adoc5
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 46c07f1..6f9ef3c 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -3,6 +3,11 @@ AsciiDoc ChangeLog
:website: https://asciidoc-py.github.io/
+Version 10.1.3 (2022-02-20)
+.Bug fixes
+- Add missing py files to dist archives
+- Fix setup.py including packages outside of asciidoc
+
Version 10.1.2 (2022-02-17)
---------------------------
.Bug fixes
diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py
index a6bb9fc..fc649e2 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 1, 2)
+VERSION = (10, 1, 3)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index c07885c..fa67643 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 10.1.2)
+AC_INIT(asciidoc, 10.1.3)
-AC_SUBST([PACKAGE_DATE], ['17 February 2022'])
+AC_SUBST([PACKAGE_DATE], ['20 February 2022'])
AC_CONFIG_FILES(Makefile)