summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-07-21 11:02:12 -0400
committerMatthew Peveler <matt.peveler@gmail.com>2020-07-21 11:02:12 -0400
commit9a407dc9a497364c91421fd961954eddb565baf1 (patch)
treeb8ddbb815a6ec8b3d29f6dfd2567bbdbb8f33ebe
parent98186ac9082f53c671c18f32f7a0653dad8ae35b (diff)
downloadasciidoc-py3-9a407dc9a497364c91421fd961954eddb565baf1.tar.gz
9.0.2 release9.0.2
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.txt5
-rwxr-xr-xa2x.py2
-rwxr-xr-xasciidoc.py2
-rw-r--r--configure.ac4
4 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index df98f85..e06ab3d 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,11 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.0.2 (2020-07-21)
+--------------------------
+.Bug fixes
+- Revert to using optparse from argparse for a2x
+
Version 9.0.1 (2020-06-26)
--------------------------
.Bug fixes
diff --git a/a2x.py b/a2x.py
index 2a886fc..545cf41 100755
--- a/a2x.py
+++ b/a2x.py
@@ -42,7 +42,7 @@ import xml.dom.minidom
import mimetypes
PROG = os.path.basename(os.path.splitext(__file__)[0])
-VERSION = '9.0.1'
+VERSION = '9.0.2'
# AsciiDoc global configuration file directory.
# NOTE: CONF_DIR is "fixed up" by Makefile -- don't rename or change syntax.
diff --git a/asciidoc.py b/asciidoc.py
index b91c29d..14641e9 100755
--- a/asciidoc.py
+++ b/asciidoc.py
@@ -33,7 +33,7 @@ from ast import literal_eval
from collections import OrderedDict
# Used by asciidocapi.py #
-VERSION = '9.0.1' # See CHANGELOG file for version history.
+VERSION = '9.0.2' # See CHANGELOG file for version history.
MIN_PYTHON_VERSION = '3.5' # Require this version of Python or better.
diff --git a/configure.ac b/configure.ac
index 8ac823e..bb2fa65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.0.1)
+AC_INIT(asciidoc, 9.0.2)
-AC_SUBST([PACKAGE_DATE], ['26 June 2020'])
+AC_SUBST([PACKAGE_DATE], ['21 July 2020'])
AC_CONFIG_FILES(Makefile)