From 545b79b8d7dae70d12bf0657359bdd36de0c5c26 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Sun, 22 May 2022 13:04:06 -0400 Subject: Bump version to 10.2.0 (#258) --- CHANGELOG.adoc | 17 +++++++++++++++++ asciidoc/__metadata__.py | 2 +- configure.ac | 4 ++-- 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) -- cgit v1.2.1