Skip to content

Commit 582d59c

Browse files
author
Christopher Doris
committed
release 0.9.29
1 parent 2ff3c84 commit 582d59c

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

CHANGELOG.md

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

3-
## Unreleased
3+
## 0.9.29 (2025-11-14)
44
* Minimum supported Python version is now 3.10.
55
* Minimum supported Julia version is now 1.10.
66
* Showing `Py` now respects the `compact` option - output is limited to a single line of

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.28"
4+
version = "0.9.29"
55

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

bump.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ bumpver("pysrc/juliacall/juliapkg.json", "\"version\": \"={}\"", oldver, newver)
2828
bumpver("pysrc/juliacall/juliapkg-dev.json", "\"version\": \"={}\"", oldver, newver)
2929
bumpver("src/API/API.jl", "VERSION = v\"{}\"", oldver, newver)
3030
bumpver("src/Core/Core.jl", "VERSION = v\"{}\"", oldver, newver)
31-
bump("docs/src/releasenotes.md", "## Unreleased", "## $newver ($(today()))")
31+
bump("CHANGELOG.md", "## Unreleased", "## $newver ($(today()))")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "juliacall"
7-
version = "0.9.28"
7+
version = "0.9.29"
88
description = "Julia and Python in seamless harmony"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
classifiers = [

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.28'
4+
__version__ = '0.9.29'
55

66
_newmodule = None
77

pysrc/juliacall/juliapkg-dev.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.28",
6+
"version": "=0.9.29",
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.28"
6+
"version": "=0.9.29"
77
},
88
"OpenSSL_jll": {
99
"uuid": "458c3c95-2e84-50aa-8efc-19380b2a3a95",

src/API/API.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"The version of PythonCall."
2-
const VERSION = v"0.9.28"
2+
const VERSION = v"0.9.29"
33

44
include("types.jl")
55
include("functions.jl")

src/Core/Core.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Defines the `Py` type and directly related functions.
55
"""
66
module Core
77

8-
const VERSION = v"0.9.28"
8+
const VERSION = v"0.9.29"
99
const ROOT_DIR = dirname(dirname(@__DIR__))
1010

1111
using ..PythonCall

0 commit comments

Comments
 (0)