summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'])