Skip to content

Commit

Permalink
release 0.9.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Doris committed Jan 22, 2025
1 parent b4b1fad commit 7af11e0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PythonCall"
uuid = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
authors = ["Christopher Doris <github.com/cjdoris>"]
version = "0.9.23"
version = "0.9.24"

[deps]
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## Unreleased
## 0.9.24 (2025-01-22)
* Bug fixes.

## 0.9.23 (2024-08-22)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "juliacall"
version = "0.9.23"
version = "0.9.24"
description = "Julia and Python in seamless harmony"
readme = { file = "README.md", content-type = "text/markdown" }
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion pysrc/juliacall/__init__.py
Original file line number Diff line number Diff line change
@@ -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.23'
__version__ = '0.9.24'

_newmodule = None

Expand Down
2 changes: 1 addition & 1 deletion pysrc/juliacall/juliapkg-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": {
"PythonCall": {
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
"version": "=0.9.23",
"version": "=0.9.24",
"path": "../..",
"dev": true
}
Expand Down
2 changes: 1 addition & 1 deletion pysrc/juliacall/juliapkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": {
"PythonCall": {
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",
"version": "=0.9.23"
"version": "=0.9.24"
}
}
}
2 changes: 1 addition & 1 deletion src/Core/Core.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Defines the `Py` type and directly related functions.
"""
module Core

const VERSION = v"0.9.23"
const VERSION = v"0.9.24"
const ROOT_DIR = dirname(dirname(@__DIR__))

using ..PythonCall: PythonCall # needed for docstring cross-refs
Expand Down
2 changes: 1 addition & 1 deletion src/PythonCall.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module PythonCall

const VERSION = v"0.9.23"
const VERSION = v"0.9.24"
const ROOT_DIR = dirname(@__DIR__)

include("Utils/Utils.jl")
Expand Down

0 comments on commit 7af11e0

Please sign in to comment.