From 25049e3e6a5313ae42d84ede0719f71100366de5 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Sun, 13 Sep 2020 18:19:19 -0700 Subject: [PATCH] Bump to 0.5.6 --- .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 b8493009..a06d15f0 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.6.dev'] + package: ['julia==0.5.6'] steps: - name: Set up Python 3.8 uses: actions/setup-python@v1 diff --git a/ci/test-upload/tox.ini b/ci/test-upload/tox.ini index af1583f2..c20251f1 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.6.dev + pip install --index-url https://test.pypi.org/simple/ julia==0.5.6 python -c "from julia import install; install()" python -m julia.runtests -- \ diff --git a/docs/source/conf.py b/docs/source/conf.py index d0bd2f93..b387a1c6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = '0.5.6' # The full version, including alpha/beta/rc tags -release = '0.5.6.dev' +release = '0.5.6' # -- General configuration --------------------------------------------------- diff --git a/src/julia/release.py b/src/julia/release.py index 77ebfcd8..5fd270aa 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.6.dev" +__version__ = "0.5.6" # For Python versioning scheme, see: # https://www.python.org/dev/peps/pep-0440/#version-scheme