Skip to content

Commit fb69ab6

Browse files
author
Christopher Doris
committedMay 14, 2023
bump to v0.9.13
1 parent 83c7f9e commit fb69ab6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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.12"
4+
version = "0.9.13"
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.13 (2023-05-14)
44
* Conversion to wrapper types `PyList`, `PySet`, `PyDict` or `PyIterable` now default to
55
having element type `Any` instead of `Py`.
66
* The `__repr__` method of wrapped Julia objects now uses the 3-arg show method for nicer

‎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.12'
4+
__version__ = '0.9.13'
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.12",
6+
"version": "=0.9.13",
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.12"
6+
"version": "=0.9.13"
77
}
88
}
99
}

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = juliacall
3-
version = 0.9.12
3+
version = 0.9.13
44
description = Julia and Python in seamless harmony
55
long_description = file: README.md
66
long_description_content_type = text/markdown

‎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.12"
3+
const VERSION = v"0.9.13"
44
const ROOT_DIR = dirname(@__DIR__)
55

66
using Base: @propagate_inbounds

2 commit comments

Comments
 (2)

cjdoris commented on May 14, 2023

@cjdoris
Collaborator

JuliaRegistrator commented on May 14, 2023

@JuliaRegistrator

Registration pull request created: JuliaRegistries/General/83557

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.13 -m "<description of version>" fb69ab679ce98035eb08092fd1d153f50688b42a
git push origin v0.9.13
Please sign in to comment.