Skip to content

Commit 7af11e0

Browse files
author
Christopher Doris
committed
release 0.9.24
1 parent b4b1fad commit 7af11e0

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Project.toml

+1-1
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.23"
4+
version = "0.9.24"
55

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

docs/src/releasenotes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release Notes
22

3-
## Unreleased
3+
## 0.9.24 (2025-01-22)
44
* Bug fixes.
55

66
## 0.9.23 (2024-08-22)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

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

pysrc/juliacall/__init__.py

+1-1
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.23'
4+
__version__ = '0.9.24'
55

66
_newmodule = None
77

pysrc/juliacall/juliapkg-dev.json

+1-1
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.23",
6+
"version": "=0.9.24",
77
"path": "../..",
88
"dev": true
99
}

pysrc/juliacall/juliapkg.json

+1-1
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.23"
6+
"version": "=0.9.24"
77
}
88
}
99
}

src/Core/Core.jl

+1-1
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.23"
8+
const VERSION = v"0.9.24"
99
const ROOT_DIR = dirname(dirname(@__DIR__))
1010

1111
using ..PythonCall: PythonCall # needed for docstring cross-refs

src/PythonCall.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module PythonCall
22

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

66
include("Utils/Utils.jl")

0 commit comments

Comments
 (0)