summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-10-30 16:46:38 +0200
committerGitHub <noreply@github.com>2020-10-30 10:46:38 -0400
commit8de61a75572b5b8f90c1f87634aa3767472be7a7 (patch)
treeb3233fa405e5e083da65df221e32407fd1d27216
parentb7e1913f470ed1c623431d7a12a2a90b5ff5d9fd (diff)
downloadasciidoc-py3-8de61a75572b5b8f90c1f87634aa3767472be7a7.tar.gz
cut v9.0.4 release (#150)9.0.4
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 c85e3d3..8b79717 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,17 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.0.4 (2020-10-20)
+--------------------------
+.Bug fixes
+- Fix listing out installed plugins (e.g. --filter list)
+- Fix python version check failing on 3.10 (thanks @hoadlck)
+
+.Testing
+- Update to deadsnakes/python@v2.0.0 for testing dev python versions
+- Move from testing against 3.9-dev to stable 3.9
+- Add 3.10-dev test target
+
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 42868c4..5c6b08b 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)