Skip to content

Commit 0d33da8

Browse files
author
Christopher Doris
committed
release notes and version bump
1 parent 1615610 commit 0d33da8

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
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.0"
4+
version = "0.9.1"
55

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

docs/src/pycall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Coming from *PyCall*?
1+
# Coming from PyCall/PyJulia?
22

33
Another similar interface to Python is provided by [PyCall](https://github.com/JuliaPy/PyCall.jl).
44

docs/src/releasenotes.md

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

3-
## Unreleased
3+
## 0.9.1 (2022-06-18)
44
* `PyArray` can be constructed using the `__array_struct__` part of the Numpy array
55
interface. Constructing `PyArray(x)` is now about 50x faster, or 175x faster if you fully
66
specify the type.
7+
* JuliaCall can now be imported on Apple M1.
78

89
## 0.9.0 (2022-05-27)
910
* **Breaking.** Removes `getpy`: you may now overload `Py` directly, which now need not

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.0'
4+
__version__ = '0.9.1'
55

66
_newmodule = None
77

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.0"
6+
"version": "0.9.1"
77
}
88
}
99
}

setup.cfg

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

src/PythonCall.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module PythonCall
22

3-
const VERSION = v"0.9.0"
3+
const VERSION = v"0.9.1"
44
const ROOT_DIR = dirname(@__DIR__)
55

66
using Base: @propagate_inbounds

0 commit comments

Comments
 (0)