From 4667219e473a24e8e645eb9b9fb0a7ddba322f44 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Sat, 16 Oct 2021 19:57:51 -1000 Subject: Update metadata for 10.0.0 release Signed-off-by: Matthew Peveler --- asciidoc/__metadata__.py | 2 +- configure.ac | 4 ++-- setup.py | 2 +- 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, -- cgit v1.2.1