summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.adoc10
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
3 files changed, 12 insertions, 4 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index c204f09..ede6440 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -3,8 +3,16 @@ AsciiDoc ChangeLog
:website: https://asciidoc-py.github.io/
+Version 10.0.1 (2021-10-28)
+---------------------------
+.Bug fixes
+- Fix running make docs
+- Fix warning in music filter when using GraphicsMagick
+- Fix handling escaped attributes inside of macros
+- Include *.xsl and *.sty files in pip installations
+
Version 10.0.0 (2021-10-16)
---------------------------
+---------------------------
.Breaking Changes
AsciiDoc.py has been rewritten to be a https://pypi.org/project/asciidoc/[proper Python package], installable via pip. Downloading and running asciidoc from the repo is not recommended, but can be done through `python3 -m asciidoc` or `python3 -m asciidoc.a2x`. CLI usage should remain the same where both `asciidoc` and `a2x` CLI commands are available after pip installation. Support for overriding the bundled *.conf files is done through CLI flags, environment variables, etc., and not through directly editing the files within the installation. Importing asciidoc should no longer require the `asciidocapi.py` script, and can be done through regular python import, e.g. `import asciidoc; asciidoc.execute(...)`.
diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py
index 90acaed..dbbb780 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 0, 0)
+VERSION = (10, 0, 1)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index de332a7..9111c00 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 10.0.0)
+AC_INIT(asciidoc, 10.0.1)
-AC_SUBST([PACKAGE_DATE], ['16 October 2021'])
+AC_SUBST([PACKAGE_DATE], ['28 October 2021'])
AC_CONFIG_FILES(Makefile)