diff options
-rw-r--r-- | .github/workflows/release.yml | 8 | ||||
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rwxr-xr-x | a2x.py | 2 | ||||
-rwxr-xr-x | asciidoc.py | 2 | ||||
-rw-r--r-- | configure.ac | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a00ad45..3089ccd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,8 +15,8 @@ jobs: - name: Build distributions run: docker run --rm -v $(pwd):/srv/asciidoc asciidoc /bin/bash -c "make dist" - - name: Upload asciidoc.zip - id: upload-release-asset + - name: Upload asciidoc-${{ github.event.release.tag_name }}.zip + id: upload-release-asset-zip uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -26,8 +26,8 @@ jobs: asset_name: asciidoc-${{ github.event.release.tag_name }}.zip asset_content_type: application/zip - - name: Upload Release Asset - id: upload-release-asset + - name: Upload asciidoc-${{ github.event.release.tag_name }}.tar.gz + id: upload-release-asset-tar uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 406229f..f44ad7e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,7 +3,7 @@ AsciiDoc ChangeLog :website: https://asciidoc.org/ -Version 9.0.0 (Unreleased) +Version 9.0.0 (2020-06-02) -------------------------- .Additions and changes - Port asciidoc to run on Python 3.5+ (see https://github.com/asciidoc/asciidoc for the EOL Python 2 implementation) @@ -42,7 +42,7 @@ import xml.dom.minidom import mimetypes PROG = os.path.basename(os.path.splitext(__file__)[0]) -VERSION = '9.0.0rc2' +VERSION = '9.0.0' # AsciiDoc global configuration file directory. # NOTE: CONF_DIR is "fixed up" by Makefile -- don't rename or change syntax. diff --git a/asciidoc.py b/asciidoc.py index dcdeceb..1c11fd9 100755 --- a/asciidoc.py +++ b/asciidoc.py @@ -33,7 +33,7 @@ from ast import literal_eval from collections import OrderedDict # Used by asciidocapi.py # -VERSION = '9.0.0rc2' # See CHANGELOG file for version history. +VERSION = '9.0.0' # See CHANGELOG file for version history. MIN_PYTHON_VERSION = '3.5' # Require this version of Python or better. diff --git a/configure.ac b/configure.ac index 2e1d9d6..b89fe3c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ -AC_INIT(asciidoc, 9.0.0rc2) +AC_INIT(asciidoc, 9.0.0) -AC_SUBST([PACKAGE_DATE], ['11 March 2020']) +AC_SUBST([PACKAGE_DATE], ['02 June 2020']) AC_CONFIG_FILES(Makefile) |