summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-01-23 23:20:34 -0500
committerGitHub <noreply@github.com>2021-01-23 23:20:34 -0500
commita805c6c2e0e1c85b2cb586717096f10566dc8a13 (patch)
tree4e986626b3b37f2f18a6c553e600a5a1655479ce
parent2f4f1c5eadbe3d3c2739cb9ade9349aaa1248926 (diff)
downloadasciidoc-py3-a805c6c2e0e1c85b2cb586717096f10566dc8a13.tar.gz
cut 9.0.5 release (#158)
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)