Skip to content

Commit 71666ca

Browse files
author
Christopher Doris
committed
release v0.9.28
1 parent f687935 commit 71666ca

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-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.27"
4+
version = "0.9.28"
55

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

docs/src/releasenotes.md

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

3-
## Unreleased
3+
## 0.9.28 (2025-09-17)
44
* Added `NumpyDates`: NumPy-compatible DateTime64/TimeDelta64 types and units.
55
* Added `pyconvert` rules for NumpyDates types.
66
* Added `PyArray` support for NumPy arrays of `datetime64` and `timedelta64`.
@@ -10,6 +10,7 @@
1010
* Added `PYTHON_JULIACALL_EXE` and `PYTHON_JULIACALL_PROJECT` for specifying the Julia binary and project to override JuliaPkg.
1111
* Adds methods `Py(::AbstractString)`, `Py(::AbstractChar)` (previously only builtin string and char types were allowed).
1212
* Adds methods `Py(::Integer)`, `Py(::Rational{<:Integer})`, `Py(::AbstractRange{<:Integer})` (previously only builtin integer types were allowed).
13+
* Adds method `pydict(::Pair...)` to construct a python `dict` from `Pair`s, similar to `Dict`.
1314
* Bug fixes.
1415
* Internal: switch from Requires.jl to package extensions.
1516

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.27"
7+
version = "0.9.28"
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.27'
4+
__version__ = '0.9.28'
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.27",
6+
"version": "=0.9.28",
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.27"
6+
"version": "=0.9.28"
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.27"
2+
const VERSION = v"0.9.28"
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.27"
8+
const VERSION = v"0.9.28"
99
const ROOT_DIR = dirname(dirname(@__DIR__))
1010

1111
using ..PythonCall

0 commit comments

Comments
 (0)