summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-10-20 14:04:28 +0000
committerMatthew Peveler <matt.peveler@gmail.com>2020-10-20 14:04:28 +0000
commit6ada16ddfc115f5526250be9926d5aba5774a72c (patch)
tree1becf34ca9d5e840284b46885f9a9b9d569ca543
parent2aef9025a68b6982ddd47c2add63efe5eca4effd (diff)
downloadasciidoc-py3-release_9_0_4.tar.gz
cut v9.0.4 releaserelease_9_0_4
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.txt9
-rwxr-xr-xa2x.py2
-rwxr-xr-xasciidoc.py2
-rw-r--r--configure.ac4
4 files changed, 13 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index c85e3d3..a3ff7be 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,15 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.0.4 (2020-10-20)
+--------------------------
+.Bug fixes
+- Fix listing out installed plugins (e.g. --filter list)
+
+.Testing
+- Update to deadsnakes/python@v2.0.0 for testing dev python versions
+- Move from testing against 3.9-dev to stable 3.9
+
Version 9.0.3 (2020-10-05)
--------------------------
.Bug fixes
diff --git a/a2x.py b/a2x.py
index 80d7c36..06473c9 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.3'
+VERSION = '9.0.4'
# 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 f960e7d..1e922d1 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.3' # See CHANGELOG file for version history.
+VERSION = '9.0.4' # 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 5692441..647585a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.0.3)
+AC_INIT(asciidoc, 9.0.4)
-AC_SUBST([PACKAGE_DATE], ['05 October 2020'])
+AC_SUBST([PACKAGE_DATE], ['20 October 2020'])
AC_CONFIG_FILES(Makefile)