From 443dd107861b563189b19f17508366e887ac69eb Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Fri, 27 May 2022 01:27:46 +0100 Subject: [PATCH] bump version --- Project.toml | 2 +- docs/src/releasenotes.md | 2 +- pysrc/juliacall/__init__.py | 2 +- pysrc/juliacall/juliapkg.json | 2 +- setup.cfg | 2 +- src/PythonCall.jl | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Project.toml b/Project.toml index f751fb3a..08308021 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PythonCall" uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" authors = ["Christopher Doris "] -version = "0.8.0" +version = "0.9.0" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index 8c19e223..fbfcb7dc 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -1,6 +1,6 @@ # Release Notes -## Unreleased +## 0.9.0 (2022-05-27) * **Breaking.** Removes `getpy`: you may now overload `Py` directly, which now need not always return a new object (e.g. for singletons or wrappers). * **Breaking.** Conversion rules no longer take a new object every time. diff --git a/pysrc/juliacall/__init__.py b/pysrc/juliacall/__init__.py index dddedfc0..0463c2ec 100644 --- a/pysrc/juliacall/__init__.py +++ b/pysrc/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.8.0' +__version__ = '0.9.0' _newmodule = None diff --git a/pysrc/juliacall/juliapkg.json b/pysrc/juliacall/juliapkg.json index cefeab7e..309ae74f 100644 --- a/pysrc/juliacall/juliapkg.json +++ b/pysrc/juliacall/juliapkg.json @@ -3,7 +3,7 @@ "packages": { "PythonCall": { "uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d", - "version": "0.8.0" + "version": "0.9.0" } } } diff --git a/setup.cfg b/setup.cfg index 16ce1eb1..f1001790 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = juliacall -version = 0.8.0 +version = 0.9.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 209bd22a..50a7e88e 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -1,6 +1,6 @@ module PythonCall -const VERSION = v"0.8.0" +const VERSION = v"0.9.0" const ROOT_DIR = dirname(@__DIR__) using Base: @propagate_inbounds