Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Doris committed Feb 17, 2022
1 parent 578a6e7 commit aca73d5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PythonCall"
uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
authors = ["Christopher Doris <github.com/cjdoris>"]
version = "0.5.1"
version = "0.6.0"

[deps]
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"
Expand Down
5 changes: 3 additions & 2 deletions docs/src/releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Release Notes

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

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

## v0.5.0 (2021-12-11)
* **Breaking:** Now uses CondaPkg to manage Python dependencies.
* **Breaking:** PythonCall now uses CondaPkg to manage Python dependencies.
* Python objects can be shared with PyCall provided it uses the same interpreter, using methods `PythonCall.Py(::PyCall.PyObject)` and `PyCall.PyObject(::PythonCall.Py)`.
* Adds `PythonDisplay` which displays objects by printing to Python's `sys.stdout`. Used automatically in IPython in addition to `IPythonDisplay`.
* Removes the `GLOBAL` mode from `@pyexec`. Use `global` in the code instead.
Expand Down
2 changes: 1 addition & 1 deletion python/juliacall/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This module gets modified by PythonCall when it is loaded, e.g. to include Core, Base
# and Main modules.

__version__ = '0.5.1'
__version__ = '0.6.0'

def newmodule(name):
"A new module with the given name."
Expand Down
2 changes: 1 addition & 1 deletion python/juliacall/juliapkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": {
"PythonCall": {
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
"version": "0.5.1"
"version": "0.6.0"
}
}
}
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = juliacall
version = 0.5.1
version = 0.6.0
description = Julia and Python in seamless harmony
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/PythonCall.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module PythonCall

const VERSION = v"0.5.1"
const VERSION = v"0.6.0"

using Base: @propagate_inbounds
using MacroTools, Dates, Tables, Markdown, Serialization, Requires, Pkg
Expand Down

2 comments on commit aca73d5

@cjdoris
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/54838

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.0 -m "<description of version>" aca73d5b9de3ea506c34cc1a4eb38e8926a96004
git push origin v0.6.0

Please sign in to comment.