diff --git a/Project.toml b/Project.toml index 0a86bf7a..57bbeb7f 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.23" +version = "0.9.24" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index 7d331de2..ed6a245f 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -1,6 +1,6 @@ # Release Notes -## Unreleased +## 0.9.24 (2025-01-22) * Bug fixes. ## 0.9.23 (2024-08-22) diff --git a/pyproject.toml b/pyproject.toml index ffd69434..5f391d5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "juliacall" -version = "0.9.23" +version = "0.9.24" description = "Julia and Python in seamless harmony" readme = { file = "README.md", content-type = "text/markdown" } classifiers = [ diff --git a/pysrc/juliacall/__init__.py b/pysrc/juliacall/__init__.py index 6bc61fd4..952f16c1 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.23' +__version__ = '0.9.24' _newmodule = None diff --git a/pysrc/juliacall/juliapkg-dev.json b/pysrc/juliacall/juliapkg-dev.json index 20394a0b..94e7e4e7 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.23", + "version": "=0.9.24", "path": "../..", "dev": true } diff --git a/pysrc/juliacall/juliapkg.json b/pysrc/juliacall/juliapkg.json index 457804b8..43a5d588 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.23" + "version": "=0.9.24" } } } diff --git a/src/Core/Core.jl b/src/Core/Core.jl index 04f3cf9a..5e80dc86 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.23" +const VERSION = v"0.9.24" 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 3f8df120..50e2e754 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -1,6 +1,6 @@ module PythonCall -const VERSION = v"0.9.23" +const VERSION = v"0.9.24" const ROOT_DIR = dirname(@__DIR__) include("Utils/Utils.jl")