From f586f2494432f2e5366ff1e2876b8aa532630b54 Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Tue, 19 Mar 2024 18:35:51 +0000 Subject: [PATCH] release 0.9.19 --- Project.toml | 2 +- docs/src/releasenotes.md | 3 +++ 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, 10 insertions(+), 7 deletions(-) diff --git a/Project.toml b/Project.toml index 8824e820..f7353a00 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.18" +version = "0.9.19" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index a5a1135d..091ece83 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -1,5 +1,8 @@ # Release Notes +## 0.9.19 (2024-03-19) +* Bug fixes. + ## 0.9.18 (2024-03-18) * Bug fixes. diff --git a/pysrc/juliacall/__init__.py b/pysrc/juliacall/__init__.py index 7f1a5fb0..8dc3e398 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.18' +__version__ = '0.9.19' _newmodule = None diff --git a/pysrc/juliacall/juliapkg-dev.json b/pysrc/juliacall/juliapkg-dev.json index cccf2b0b..30b5191f 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.18", + "version": "=0.9.19", "path": "../..", "dev": true } diff --git a/pysrc/juliacall/juliapkg.json b/pysrc/juliacall/juliapkg.json index 8d404952..1ec5a549 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.18" + "version": "=0.9.19" } } } diff --git a/setup.cfg b/setup.cfg index 25bc7591..cf27bce9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = juliacall -version = 0.9.18 +version = 0.9.19 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 b85665e4..266b46d8 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.18" +const VERSION = v"0.9.19" 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 f38fea88..00bed562 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -1,6 +1,6 @@ module PythonCall -const VERSION = v"0.9.18" +const VERSION = v"0.9.19" const ROOT_DIR = dirname(@__DIR__) include("Utils/Utils.jl")