Skip to content

Commit 58842ab

Browse files
mkittiMilesCranmer
andauthored
Bump to 0.6.0
* Bump to 0.6.0 Co-authored-by: Miles Cranmer <[email protected]>
1 parent 52dae56 commit 58842ab

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-20.04
5858
strategy:
5959
matrix: # using `matrix` to define a constant
60-
package: ['julia==0.5.8.dev']
60+
package: ['julia==0.6.0']
6161
steps:
6262
- name: Set up Python 3.9
6363
uses: actions/setup-python@v1

ci/test-upload/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ deps =
1616

1717
commands =
1818
shell-retry --backoff=2 --interval-max=20 --retry-count=30 --verbose -- \
19-
pip install --index-url https://test.pypi.org/simple/ julia==0.5.8.dev
19+
pip install --index-url https://test.pypi.org/simple/ julia==0.6.0
2020

2121
python -c "from julia import install; install()"
2222
python -m julia.runtests -- \

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = 'The Julia and IPython development teams'
2626

2727
# The short X.Y version
28-
version = '0.5.8'
28+
version = '0.6.0'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.5.8.dev'
30+
release = '0.6.0'
3131

3232

3333
# -- General configuration ---------------------------------------------------

src/julia/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is executed via setup.py and imported via __init__.py
22

3-
__version__ = "0.5.8.dev"
3+
__version__ = "0.6.0"
44
# For Python versioning scheme, see:
55
# https://www.python.org/dev/peps/pep-0440/#version-scheme

0 commit comments

Comments
 (0)