summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-10-16 19:57:51 -1000
committerMatthew Peveler <matt.peveler@gmail.com>2021-10-16 19:57:51 -1000
commit4667219e473a24e8e645eb9b9fb0a7ddba322f44 (patch)
tree17752d1683b0e4d721c419bfe3488bc2f48e5355
parent1237864f296e85f3aafde35c74ef0a3f52e793ba (diff)
downloadasciidoc-py3-4667219e473a24e8e645eb9b9fb0a7ddba322f44.tar.gz
Update metadata for 10.0.0 release10.0.0
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rw-r--r--asciidoc/__metadata__.py2
-rw-r--r--configure.ac4
-rw-r--r--setup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/asciidoc/__metadata__.py b/asciidoc/__metadata__.py
index 0627ce8..90acaed 100644
--- a/asciidoc/__metadata__.py
+++ b/asciidoc/__metadata__.py
@@ -1,5 +1,5 @@
"""Module containing metadata about asciidoc."""
-VERSION = (10, 0, '0a2')
+VERSION = (10, 0, 0)
__version__ = '.'.join(map(str, VERSION))
diff --git a/configure.ac b/configure.ac
index a08e0e9..de332a7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
-AC_INIT(asciidoc, 9.1.1)
+AC_INIT(asciidoc, 10.0.0)
-AC_SUBST([PACKAGE_DATE], ['18 September 2021'])
+AC_SUBST([PACKAGE_DATE], ['16 October 2021'])
AC_CONFIG_FILES(Makefile)
diff --git a/setup.py b/setup.py
index 9c7e808..6227924 100644
--- a/setup.py
+++ b/setup.py
@@ -69,8 +69,8 @@ setup(
name=NAME,
version=about['__version__'],
description=DESCRIPTION,
- long_description=open(os.path.join(here, 'README.md')).read(),
long_description_content_type='text/markdown', # This is important!
+ long_description=open(os.path.join(here, 'README.md')).read(),
author=AUTHOR,
python_requires=REQUIRES_PYTHON,
url=URL,