summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2022-02-17 20:52:16 -0500
committerMatthew Peveler <matt.peveler@gmail.com>2022-02-17 20:52:22 -0500
commit546d458f3f64a2f1c4eba95a98383f59d20c0966 (patch)
tree15a932659638941e185f0c54ebc3bbc3032d69ed
parentf1f1de4536f55fa1979ec94af95089567be86a65 (diff)
downloadasciidoc-py3-546d458f3f64a2f1c4eba95a98383f59d20c0966.tar.gz
Bump version to 10.1.210.1.2
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.adoc12
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
3 files changed, 14 insertions, 4 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index a6ea95e..46c07f1 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -3,13 +3,23 @@ AsciiDoc ChangeLog
:website: https://asciidoc-py.github.io/
+Version 10.1.2 (2022-02-17)
+---------------------------
+.Bug fixes
+- DESTDIR passed to pip as part of make install
+- Add number of missing files to release tarballs
+- Fix parsing asciidoc_opt values with spaces for a2x
+
+.Miscellaneous
+- Cleanup unused parts of Makefile
+- Website files removed from main asciidoc-py repo
+
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 10d835d..a6bb9fc 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 1, 1)
+VERSION = (10, 1, 2)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index ed28835..c07885c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 10.1.1)
+AC_INIT(asciidoc, 10.1.2)
-AC_SUBST([PACKAGE_DATE], ['20 December 2021'])
+AC_SUBST([PACKAGE_DATE], ['17 February 2022'])
AC_CONFIG_FILES(Makefile)