From 39dfcd217f7644058bcca64849d062e31a8b5c1c Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Mon, 25 Oct 2021 00:40:39 -0400 Subject: [PATCH] Bump to 0.5.7 --- .github/workflows/publish.yml | 2 +- ci/test-upload/tox.ini | 2 +- docs/source/conf.py | 2 +- src/julia/release.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1ec44ff0..adba1a3b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: # using `matrix` to define a constant - package: ['julia==0.5.7.dev'] + package: ['julia==0.5.7'] steps: - name: Set up Python 3.9 uses: actions/setup-python@v1 diff --git a/ci/test-upload/tox.ini b/ci/test-upload/tox.ini index 263e4fe5..130c8e24 100644 --- a/ci/test-upload/tox.ini +++ b/ci/test-upload/tox.ini @@ -16,7 +16,7 @@ deps = commands = shell-retry --backoff=2 --interval-max=20 --retry-count=30 --verbose -- \ - pip install --index-url https://test.pypi.org/simple/ julia==0.5.7.dev + pip install --index-url https://test.pypi.org/simple/ julia==0.5.7 python -c "from julia import install; install()" python -m julia.runtests -- \ diff --git a/docs/source/conf.py b/docs/source/conf.py index 9ede8df7..5d033700 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = '0.5.7' # The full version, including alpha/beta/rc tags -release = '0.5.7.dev' +release = '0.5.7' # -- General configuration --------------------------------------------------- diff --git a/src/julia/release.py b/src/julia/release.py index 67aede88..b604f30d 100644 --- a/src/julia/release.py +++ b/src/julia/release.py @@ -1,5 +1,5 @@ # This file is executed via setup.py and imported via __init__.py -__version__ = "0.5.7.dev" +__version__ = "0.5.7" # For Python versioning scheme, see: # https://www.python.org/dev/peps/pep-0440/#version-scheme