Skip to content

Commit

Permalink
bump version [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Doris committed Sep 9, 2022
1 parent 2cf5cef commit 32e22a4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 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.5"
version = "0.9.6"

[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.6 (2022-09-09)
* When using JuliaCall from an interactive Python session, Julia is put into interactive
mode: `isinteractive()` is true, InteractiveUtils is loaded, and a nicer display is used.
* Wrapped Julia values now truncate their output when displayed via `_repr_mimebundle_`.
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.5'
__version__ = '0.9.6'

_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.5",
"version": "=0.9.6",
"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.5"
"version": "=0.9.6"
}
}
}
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.5
version = 0.9.6
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/PythonCall.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module PythonCall

const VERSION = v"0.9.5"
const VERSION = v"0.9.6"
const ROOT_DIR = dirname(@__DIR__)

using Base: @propagate_inbounds
Expand Down

2 comments on commit 32e22a4

@cjdoris
Copy link
Collaborator

@cjdoris cjdoris commented on 32e22a4 Sep 9, 2022

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/68015

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.6 -m "<description of version>" 32e22a425ae5e34629b213c0cb35296e211e0e27
git push origin v0.9.6

Please sign in to comment.