From a5290c42700fa4ff9fa07f9db3fb92bae0a37c0b Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Mon, 25 Oct 2021 00:58:33 -0700 Subject: [PATCH] Bump to 0.5.8.dev (#471) --- .github/workflows/publish.yml | 2 +- ci/test-upload/tox.ini | 2 +- docs/source/conf.py | 4 ++-- src/julia/release.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index adba1a3b..d9bdf6d9 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'] + package: ['julia==0.5.8.dev'] 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 130c8e24..06f230b7 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 + pip install --index-url https://test.pypi.org/simple/ julia==0.5.8.dev python -c "from julia import install; install()" python -m julia.runtests -- \ diff --git a/docs/source/conf.py b/docs/source/conf.py index 5d033700..c95bf030 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,9 +25,9 @@ author = 'The Julia and IPython development teams' # The short X.Y version -version = '0.5.7' +version = '0.5.8' # The full version, including alpha/beta/rc tags -release = '0.5.7' +release = '0.5.8.dev' # -- General configuration --------------------------------------------------- diff --git a/src/julia/release.py b/src/julia/release.py index b604f30d..dc81a648 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" +__version__ = "0.5.8.dev" # For Python versioning scheme, see: # https://www.python.org/dev/peps/pep-0440/#version-scheme