summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-09-18 21:00:35 -1000
committerMatthew Peveler <matt.peveler@gmail.com>2021-09-18 21:00:35 -1000
commit08b430eb317c584aa6f02a3c4372035a4d8b92c4 (patch)
tree6815996e36c77287466f86de704554bb0c376c90
parente8281f6496dcce8060d69ec1eb1959f6b9eba50e (diff)
downloadasciidoc-py3-08b430eb317c584aa6f02a3c4372035a4d8b92c4.tar.gz
cut 9.1.1 release9.1.1
-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 69e89e2..0397b1a 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,14 @@ AsciiDoc ChangeLog
:website: https://asciidoc.org/
+Version 9.1.1 (2021-09-18)
+--------------------------
+.Bug fixes
+- Cleanup outfile on system-exiting exceptions (thanks @felipec)
+
+.Testing
+- Add missing requires directive for source-highlight (thanks @marv)
+
Version 9.1.0 (2021-02-08)
--------------------------
.Features
diff --git a/a2x.py b/a2x.py
index d8a0315..954d9d4 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.1.0'
+VERSION = '9.1.1'
# 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 7f058a2..43e4800 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.1.0' # See CHANGELOG file for version history.
+VERSION = '9.1.1' # 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 43e1b14..a08e0e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.1.0)
+AC_INIT(asciidoc, 9.1.1)
-AC_SUBST([PACKAGE_DATE], ['08 February 2021'])
+AC_SUBST([PACKAGE_DATE], ['18 September 2021'])
AC_CONFIG_FILES(Makefile)