From d3aa2e7d57d46ca98ca048d05d075cccfbafeb99 Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Thu, 20 Oct 2022 19:12:26 +0100 Subject: [PATCH] bump to v0.9.9 --- 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/PythonCall.jl | 2 +- 7 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Project.toml b/Project.toml index 86280245..7765ae09 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.8" +version = "0.9.9" [deps] CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" diff --git a/docs/src/releasenotes.md b/docs/src/releasenotes.md index 7b119c49..66d0db8c 100644 --- a/docs/src/releasenotes.md +++ b/docs/src/releasenotes.md @@ -1,5 +1,8 @@ # Release Notes +## 0.9.9 (2022-10-20) +* Bug fixes. + ## 0.9.8 (2022-10-18) * Adds `line_buffering` option to `PyIO`. * Improvements to stdout when using `juliacall.ipython` includng line-buffering. diff --git a/pysrc/juliacall/__init__.py b/pysrc/juliacall/__init__.py index b174de1b..76f2a316 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.8' +__version__ = '0.9.9' _newmodule = None diff --git a/pysrc/juliacall/juliapkg-dev.json b/pysrc/juliacall/juliapkg-dev.json index 5f49250c..19c01430 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.8", + "version": "=0.9.9", "path": "../..", "dev": true } diff --git a/pysrc/juliacall/juliapkg.json b/pysrc/juliacall/juliapkg.json index a8a02411..263e73a1 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.8" + "version": "=0.9.9" } } } diff --git a/setup.cfg b/setup.cfg index f6a14fd2..42eb25d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = juliacall -version = 0.9.8 +version = 0.9.9 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 21482846..5b71a2c0 100644 --- a/src/PythonCall.jl +++ b/src/PythonCall.jl @@ -1,6 +1,6 @@ module PythonCall -const VERSION = v"0.9.8" +const VERSION = v"0.9.9" const ROOT_DIR = dirname(@__DIR__) using Base: @propagate_inbounds