summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-12-12 11:34:51 -0500
committerMatthew Peveler <matt.peveler@gmail.com>2020-12-12 11:34:51 -0500
commit18624bc6afe51c8e274033fb37015be008462681 (patch)
treefe9ddf861a78a379556ea8b4bdd7925ce868d84f
parentd6ec7e0248a5f42b3a4d6055d7e94c7f82b755ec (diff)
downloadasciidoc-py3-release-9.0.5.tar.gz
cut 9.0.5 releaserelease-9.0.5
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.txt8
-rwxr-xr-xa2x.py2
-rwxr-xr-xasciidoc.py2
-rw-r--r--configure.ac4
4 files changed, 12 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index e388e11..e79721f 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,14 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.0.5 (2020-12-12)
+--------------------------
+.Bug fixes
+- Use config newline setting in system attribute evaulation (thanks @hoadlck)
+
+.Testing
+- Update to deadsnakes/python@v2.0.2
+
Version 9.0.4 (2020-10-20)
--------------------------
.Bug fixes
diff --git a/a2x.py b/a2x.py
index 06473c9..4715b48 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.4'
+VERSION = '9.0.5'
# 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 c665398..c0f4d71 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.4' # See CHANGELOG file for version history.
+VERSION = '9.0.5' # 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 647585a..12566c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.0.4)
+AC_INIT(asciidoc, 9.0.5)
-AC_SUBST([PACKAGE_DATE], ['20 October 2020'])
+AC_SUBST([PACKAGE_DATE], ['12 December 2020'])
AC_CONFIG_FILES(Makefile)