From 0a5b25e63dafe02c8f9e1dfe60400c0214bbb6c5 Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Sat, 20 Jul 2024 22:12:15 +0100 Subject: [PATCH] release v0.9.21 --- Project.toml | 2 +- docs/src/releasenotes.md | 2 +- pysrc/juliacall/__init__.py | 2 +- pysrc/juliacall/juliapkg-dev.json | 2 +- pysrc/juliacall/juliapkg.json | 2 +- setup.cfg | 2 +- src/Core/Core.jl | 2 +- src/PythonCall.jl | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Project.toml b/Project.toml index 89ae1308..151cd33b 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.20" +version = "0.9.21" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index 3abe029e..500dbf98 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -1,6 +1,6 @@ # Release Notes -## Unreleased +## 0.9.21 (2024-07-20) * `Serialization.serialize` can use `dill` instead of `pickle` by setting the env var `JULIA_PYTHONCALL_PICKLE=dill`. * `numpy.bool_` can now be converted to `Bool` and other number types. * `datetime.timedelta` can now be converted to `Dates.Nanosecond`, `Microsecond`, `Millisecond` and `Second`. This behaviour was already documented. diff --git a/pysrc/juliacall/__init__.py b/pysrc/juliacall/__init__.py index 509dc415..6a67df2a 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.20' +__version__ = '0.9.21' _newmodule = None diff --git a/pysrc/juliacall/juliapkg-dev.json b/pysrc/juliacall/juliapkg-dev.json index 7b7f18b1..321bb1cf 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.20", + "version": "=0.9.21", "path": "../..", "dev": true } diff --git a/pysrc/juliacall/juliapkg.json b/pysrc/juliacall/juliapkg.json index bb4aa923..fc73dc10 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.20" + "version": "=0.9.21" } } } diff --git a/setup.cfg b/setup.cfg index 0c083dd4..123e6596 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = juliacall -version = 0.9.20 +version = 0.9.21 description = Julia and Python in seamless harmony long_description = file: README.md long_description_content_type = text/markdown diff --git a/src/Core/Core.jl b/src/Core/Core.jl index 13f3f675..e84f24d1 100644 --- a/src/Core/Core.jl +++ b/src/Core/Core.jl @@ -5,7 +5,7 @@ Defines the `Py` type and directly related functions. """ module Core -const VERSION = v"0.9.20" +const VERSION = v"0.9.21" const ROOT_DIR = dirname(dirname(@__DIR__)) using ..PythonCall: PythonCall # needed for docstring cross-refs diff --git a/src/PythonCall.jl b/src/PythonCall.jl index b773a1b4..68695456 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -1,6 +1,6 @@ module PythonCall -const VERSION = v"0.9.20" +const VERSION = v"0.9.21" const ROOT_DIR = dirname(@__DIR__) include("Utils/Utils.jl")