summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-11-12 21:51:14 -1000
committerMatthew Peveler <matt.peveler@gmail.com>2021-11-12 21:51:14 -1000
commit7bad9d2e77f7d384ac9042732adaefd4f6ed8979 (patch)
treededcbb38dbd053d028ca5ef468babf9db56f4ba9
parent06f82c1b741d3d3da59c76539ebccda58e054277 (diff)
downloadasciidoc-py3-7bad9d2e77f7d384ac9042732adaefd4f6ed8979.tar.gz
Bump version to 10.0.210.0.2
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.adoc9
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index ede6440..76c8064 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -3,6 +3,15 @@ AsciiDoc ChangeLog
:website: https://asciidoc-py.github.io/
+Version 10.0.2 (2021-11-12)
+---------------------------
+.Bug fixes
+- Fix errors not displaying when called via a2x (thanks @osmith42)
+- Fix incorrect parsing of asciidoc_opts in a2x (thanks @lmarz)
+
+.Miscellaneous
+- Fix automating homebrew release updates
+
Version 10.0.1 (2021-10-28)
---------------------------
.Bug fixes
diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py
index dbbb780..e961cc0 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 0, 1)
+VERSION = (10, 0, 2)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index 9111c00..3cc2da8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(asciidoc, 10.0.1)
+AC_INIT(asciidoc, 10.0.2)
AC_SUBST([PACKAGE_DATE], ['28 October 2021'])