Skip to content

Commit

Permalink
Bump to 0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf committed Sep 14, 2020
1 parent 76490dd commit 25049e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/test-upload/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 -- \
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/julia/release.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 25049e3

Please sign in to comment.