From aca73d5b9de3ea506c34cc1a4eb38e8926a96004 Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Thu, 17 Feb 2022 15:31:07 +0000 Subject: [PATCH] bump version --- Project.toml | 2 +- docs/src/releasenotes.md | 5 +++-- python/juliacall/__init__.py | 2 +- python/juliacall/juliapkg.json | 2 +- python/setup.cfg | 2 +- src/PythonCall.jl | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Project.toml b/Project.toml index 212a5aba..ae1e1cc4 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PythonCall" uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" authors = ["Christopher Doris "] -version = "0.5.1" +version = "0.6.0" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index 041e7aa2..92fa09a1 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -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. diff --git a/python/juliacall/__init__.py b/python/juliacall/__init__.py index 3bc0383c..4471fad1 100644 --- a/python/juliacall/__init__.py +++ b/python/juliacall/__init__.py @@ -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." diff --git a/python/juliacall/juliapkg.json b/python/juliacall/juliapkg.json index 183bca47..00e10897 100644 --- a/python/juliacall/juliapkg.json +++ b/python/juliacall/juliapkg.json @@ -3,7 +3,7 @@ "packages": { "PythonCall": { "uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d", - "version": "0.5.1" + "version": "0.6.0" } } } diff --git a/python/setup.cfg b/python/setup.cfg index 222d4aca..33aa5f33 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -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 diff --git a/src/PythonCall.jl b/src/PythonCall.jl index ba88cc7d..7db98bbb 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -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