summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-03-11 17:31:53 -0700
committerMatthew Peveler <matt.peveler@gmail.com>2020-03-11 17:31:53 -0700
commit4da82753b9d12b4c477f8bfdc441e179e4921901 (patch)
treec819e19b5f57b004d06226b0749ba7103c0f9fe6
parent2d5f1aaf2ba0b2662fcf8e03cb8baa818365447c (diff)
downloadasciidoc-py3-4da82753b9d12b4c477f8bfdc441e179e4921901.tar.gz
Cut 9.0.0rc2 release9.0.0rc2
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--CHANGELOG.txt4
-rwxr-xr-xa2x.py2
-rwxr-xr-xasciidoc.py2
-rw-r--r--configure.ac4
4 files changed, 8 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 422b8b2..0f26c48 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -18,10 +18,14 @@ Version 9.0.0 (Unreleased)
- Add manpage for testasciidoc.py
- Use argparse instead of optparse for argument parsing
- Migrate from A-A-P based build system to Make
+- Running `make help` will now print out a helpful usage message
+- Add simplified Chinese translation (thanks @muirmok)
+- vim-asciidoc: speed up the refresh process for big files (thanks @aerostitch)
.Bug fixes
- Fix index terms requiring two characters instead of just one (see https://github.com/asciidoc/asciidoc-py3/pull/2#issuecomment-392605876)
- Properly capture and use colophon, dedication, and preface for docbooks in Japanese (see https://github.com/asciidoc/asciidoc-py3/pull/2#issuecomment-392623181)
+- make install did not include the unwraplatex.py filter
.Testing
- Commit generated test files to the repository for continuous integration
diff --git a/a2x.py b/a2x.py
index 8b5f826..1602bf6 100755
--- a/a2x.py
+++ b/a2x.py
@@ -23,7 +23,7 @@ import xml.dom.minidom
import mimetypes
PROG = os.path.basename(os.path.splitext(__file__)[0])
-VERSION = '9.0.0rc1'
+VERSION = '9.0.0rc2'
# 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 4e22f7c..85e62e7 100755
--- a/asciidoc.py
+++ b/asciidoc.py
@@ -29,7 +29,7 @@ from ast import literal_eval
from collections import OrderedDict
# Used by asciidocapi.py #
-VERSION = '9.0.0rc1' # See CHANGELOG file for version history.
+VERSION = '9.0.0rc2' # 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 53ca0c5..2e1d9d6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.0.0rc1)
+AC_INIT(asciidoc, 9.0.0rc2)
-AC_SUBST([PACKAGE_DATE], ['27 November 2019'])
+AC_SUBST([PACKAGE_DATE], ['11 March 2020'])
AC_CONFIG_FILES(Makefile)