summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2022-05-22 13:04:06 -0400
committerGitHub <noreply@github.com>2022-05-22 13:04:06 -0400
commit545b79b8d7dae70d12bf0657359bdd36de0c5c26 (patch)
treedb244f7d3b47c9b0a97bb5d67ff19a6e581d9f12
parent1707edd1ea1b2e0cb10c6f4b36f94326fa53e718 (diff)
downloadasciidoc-py3-545b79b8d7dae70d12bf0657359bdd36de0c5c26.tar.gz
Bump version to 10.2.0 (#258)10.2.0
-rw-r--r--CHANGELOG.adoc17
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
3 files changed, 20 insertions, 3 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 8042715..9c77c87 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -3,6 +3,23 @@ AsciiDoc ChangeLog
:website: https://asciidoc-py.github.io/
+Version 10.2.0 (2022-05-22)
+---------------------------
+.Future feature
+As part of the intended 10.3.0 release, the following document attribute flags will be reserved for modifying asciidoc-py runtime behavior:
+
+- `future-compat`
+- `legacy-compat`
+- `compat-mode`
+
+Please see https://github.com/asciidoc-py/asciidoc-py/issues/254[GH issue #254] for more information.
+
+.Bug fixes
+- Fix verbose output not working when using a2x or asciidoc entry points
+
+.Miscellaneous
+- Automate publishing asciidoc-py website as part of release process
+
Version 10.1.4 (2022-03-01)
---------------------------
.Bug fixes
diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py
index 3ad90ce..72eb861 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 1, 4)
+VERSION = (10, 2, 0)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index a5d1ea5..86dcd0c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 10.1.4)
+AC_INIT(asciidoc, 10.2.0)
-AC_SUBST([PACKAGE_DATE], ['01 March 2022'])
+AC_SUBST([PACKAGE_DATE], ['22 May 2022'])
AC_CONFIG_FILES(Makefile)