Skip to content

Commit

Permalink
release 0.9.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Doris committed Aug 22, 2024
1 parent 3b8bc97 commit ce54b86
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.22"
version = "0.9.23"

[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.23 (2024-08-22)
* Bug fixes.

## 0.9.22 (2024-08-07)
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.22'
__version__ = '0.9.23'

_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.22",
"version": "=0.9.23",
"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.22"
"version": "=0.9.23"
}
}
}
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = juliacall
version = 0.9.22
version = 0.9.23
description = Julia and Python in seamless harmony
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
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.22"
const VERSION = v"0.9.23"
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.22"
const VERSION = v"0.9.23"
const ROOT_DIR = dirname(@__DIR__)

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

2 comments on commit ce54b86

@cjdoris
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/113680

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.23 -m "<description of version>" ce54b863863336ee3585a82e0333b610d34e4c13
git push origin v0.9.23

Please sign in to comment.