Skip to content

Commit aca73d5

Browse files
author
Christopher Doris
committed
bump version
1 parent 578a6e7 commit aca73d5

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PythonCall"
22
uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
33
authors = ["Christopher Doris <github.com/cjdoris>"]
4-
version = "0.5.1"
4+
version = "0.6.0"
55

66
[deps]
77
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"

docs/src/releasenotes.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Release Notes
22

3-
## Unreleased
3+
## v0.6.0 (2022-02-17)
4+
* **Breaking:** JuliaCall now uses JuliaPkg to manage Julia dependencies.
45
* Bug fixes.
56

67
## v0.5.1 (2022-01-24)
78
* Bug fixes.
89

910
## v0.5.0 (2021-12-11)
10-
* **Breaking:** Now uses CondaPkg to manage Python dependencies.
11+
* **Breaking:** PythonCall now uses CondaPkg to manage Python dependencies.
1112
* Python objects can be shared with PyCall provided it uses the same interpreter, using methods `PythonCall.Py(::PyCall.PyObject)` and `PyCall.PyObject(::PythonCall.Py)`.
1213
* Adds `PythonDisplay` which displays objects by printing to Python's `sys.stdout`. Used automatically in IPython in addition to `IPythonDisplay`.
1314
* Removes the `GLOBAL` mode from `@pyexec`. Use `global` in the code instead.

python/juliacall/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This module gets modified by PythonCall when it is loaded, e.g. to include Core, Base
22
# and Main modules.
33

4-
__version__ = '0.5.1'
4+
__version__ = '0.6.0'
55

66
def newmodule(name):
77
"A new module with the given name."

python/juliacall/juliapkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": {
44
"PythonCall": {
55
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
6-
"version": "0.5.1"
6+
"version": "0.6.0"
77
}
88
}
99
}

python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = juliacall
3-
version = 0.5.1
3+
version = 0.6.0
44
description = Julia and Python in seamless harmony
55
long_description = file: README.md
66
long_description_content_type = text/markdown

src/PythonCall.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module PythonCall
22

3-
const VERSION = v"0.5.1"
3+
const VERSION = v"0.6.0"
44

55
using Base: @propagate_inbounds
66
using MacroTools, Dates, Tables, Markdown, Serialization, Requires, Pkg

0 commit comments

Comments
 (0)