summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-06-26 15:00:25 -0400
committerMatthew Peveler <matt.peveler@gmail.com>2020-06-26 15:00:25 -0400
commitfce6bd87fbdef5e510310464b02a75fb32f72f74 (patch)
tree3ebe61e2af07c1c7e241f00f043bb43a90fd9503
parent334b4aed32f5e1b0952445b3b4e6b3e133063565 (diff)
downloadasciidoc-py3-fce6bd87fbdef5e510310464b02a75fb32f72f74.tar.gz
cut v9.0.1 release9.0.1
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.txt11
-rwxr-xr-xa2x.py2
-rwxr-xr-xasciidoc.py2
-rw-r--r--configure.ac4
4 files changed, 15 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index f44ad7e..df98f85 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,17 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.0.1 (2020-06-26)
+--------------------------
+.Bug fixes
+- Fix a2x crashing on decoding generated HTML pages
+
+.Building
+- Fix generated tar.gz not having files under top-level asciidoc folder
+
+.Testing
+- Test against Python 3.9
+
Version 9.0.0 (2020-06-02)
--------------------------
.Additions and changes
diff --git a/a2x.py b/a2x.py
index 7709743..dadd1ea 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.0'
+VERSION = '9.0.1'
# 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 1c11fd9..b91c29d 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.0' # See CHANGELOG file for version history.
+VERSION = '9.0.1' # 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 f3ec5e2..8ac823e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.0.1-SNAPSHOT)
+AC_INIT(asciidoc, 9.0.1)
-AC_SUBST([PACKAGE_DATE], ['02 June 2020'])
+AC_SUBST([PACKAGE_DATE], ['26 June 2020'])
AC_CONFIG_FILES(Makefile)