From eef96a54b069b08df3368599f90aa4239717eb9a Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Mon, 5 Oct 2020 05:53:32 +0000 Subject: v9.0.3 release --- CHANGELOG.txt | 8 ++++++++ a2x.py | 2 +- asciidoc.py | 2 +- configure.ac | 4 ++-- 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) -- cgit v1.2.1