summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-10-16 22:58:49 +0300
committerGitHub <noreply@github.com>2020-10-16 15:58:49 -0400
commit245751e6cbf3ebf03f1a59f774f1c5ba9af6a842 (patch)
treee724c58f5ed0730a1411301baa32746226a645d6
parent13388a33c9e59c852d735eef74b11f3b572e346e (diff)
downloadasciidoc-py3-245751e6cbf3ebf03f1a59f774f1c5ba9af6a842.tar.gz
v9.0.3 release (#148)9.0.3
-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 e06ab3d..c85e3d3 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,14 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.0.3 (2020-10-05)
+--------------------------
+.Bug fixes
+- Fix extra newline characters inserted into generated source (thanks @hoadlck)
+
+.Testing
+- Validate line endings as part of test suite
+
Version 9.0.2 (2020-07-21)
--------------------------
.Bug fixes
diff --git a/a2x.py b/a2x.py
index 545cf41..80d7c36 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.2'
+VERSION = '9.0.3'
# 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 4828f91..e286335 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.2' # See CHANGELOG file for version history.
+VERSION = '9.0.3' # 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 bb2fa65..5692441 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.0.2)
+AC_INIT(asciidoc, 9.0.3)
-AC_SUBST([PACKAGE_DATE], ['21 July 2020'])
+AC_SUBST([PACKAGE_DATE], ['05 October 2020'])
AC_CONFIG_FILES(Makefile)