diff --git a/Project.toml b/Project.toml index b7770094..86eea38b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PythonCall" uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" authors = ["Christopher Doris "] -version = "0.9.13" +version = "0.9.14" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index 4f881323..53a5ac47 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -1,6 +1,6 @@ # Release Notes -## 0.9.14 (Unreleased) +## 0.9.14 (2023-07-26) * Wrapped Julia values support truthiness (`__bool__`) better: all values are true, except for zero numbers and empty arrays, dicts and sets. * JuliaCall now supports the Julia `--handle-signals` option. Setting this to `yes` allows diff --git a/pysrc/juliacall/__init__.py b/pysrc/juliacall/__init__.py index 03b30d4b..91aa6f11 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.9.13' +__version__ = '0.9.14' _newmodule = None diff --git a/pysrc/juliacall/juliapkg-dev.json b/pysrc/juliacall/juliapkg-dev.json index 0506d288..25c32d66 100644 --- a/pysrc/juliacall/juliapkg-dev.json +++ b/pysrc/juliacall/juliapkg-dev.json @@ -3,7 +3,7 @@ "packages": { "PythonCall": { "uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d", - "version": "=0.9.13", + "version": "=0.9.14", "path": "../..", "dev": true } diff --git a/pysrc/juliacall/juliapkg.json b/pysrc/juliacall/juliapkg.json index 48f8cb83..f3e41a44 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.9.13" + "version": "=0.9.14" } } } diff --git a/setup.cfg b/setup.cfg index 5c2110ba..511656b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = juliacall -version = 0.9.13 +version = 0.9.14 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 22f7e25e..208097ef 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -1,6 +1,6 @@ module PythonCall -const VERSION = v"0.9.13" +const VERSION = v"0.9.14" const ROOT_DIR = dirname(@__DIR__) using Base: @propagate_inbounds