Skip to content

Commit 73b34a7

Browse files
author
Christopher Doris
committed
bump to v0.9.16
1 parent ba540f3 commit 73b34a7

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PythonCall"
22
uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
33
authors = ["Christopher Doris <github.com/cjdoris>"]
4-
version = "0.9.15"
4+
version = "0.9.16"
55

66
[deps]
77
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"

docs/src/releasenotes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Release Notes
22

3-
## Unreleased
3+
## 0.9.16 (2024-03-14)
4+
* Big internal refactor.
45
* New unexported functions: `python_executable_path`, `python_library_path`, `python_library_handle` and `python_version`.
56
* `Py` is now treated as a scalar when broadcasting.
67
* `PyArray` is now serializable.
8+
* Removed compatibility with Julia 1.10.1 and 1.10.2 (to be fixed in 1.10.3 and 1.11.0) due to an upstream bug.
79
* Bug fixes.
810

911
## 0.9.15 (2023-10-25)

pysrc/juliacall/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This module gets modified by PythonCall when it is loaded, e.g. to include Core, Base
22
# and Main modules.
33

4-
__version__ = '0.9.15'
4+
__version__ = '0.9.16'
55

66
_newmodule = None
77

pysrc/juliacall/juliapkg-dev.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"julia": "1.6.1",
2+
"julia": "~1.6.1, ~1.7, ~1.8, ~1.9, =1.10.0",
33
"packages": {
44
"PythonCall": {
55
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
6-
"version": "=0.9.15",
6+
"version": "=0.9.16",
77
"path": "../..",
88
"dev": true
99
}

pysrc/juliacall/juliapkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": {
44
"PythonCall": {
55
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
6-
"version": "=0.9.15"
6+
"version": "=0.9.16"
77
}
88
}
99
}

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = juliacall
3-
version = 0.9.15
3+
version = 0.9.16
44
description = Julia and Python in seamless harmony
55
long_description = file: README.md
66
long_description_content_type = text/markdown

src/PythonCall.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module PythonCall
22

3-
const VERSION = v"0.9.15"
3+
const VERSION = v"0.9.16"
44
const ROOT_DIR = dirname(@__DIR__)
55

66
include("Utils/Utils.jl")

0 commit comments

Comments
 (0)