Skip to content

Commit ca70baf

Browse files
author
Christopher Doris
committed
stupid bug [skip ci]
1 parent 2a415e0 commit ca70baf

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
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.2"
4+
version = "0.9.3"
55

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

docs/src/releasenotes.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Release Notes
22

3+
## 0.9.3 (2022-07-02)
4+
* Bug fixes.
35

46
## 0.9.2 (2022-07-02)
57
* Many Julia CLI options (such sysimage or number of threads) can be set from JuliaCall.

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.2'
4+
__version__ = '0.9.3'
55

66
_newmodule = None
77

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

setup.cfg

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = juliacall
3-
version = 0.9.2
3+
version = 0.9.3
44
description = Julia and Python in seamless harmony
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -20,4 +20,6 @@ install_requires =
2020
juliapkg ~=0.1.0
2121

2222
[options.package_data]
23-
juliacall = *.json
23+
juliacall =
24+
*.json
25+
*.jl

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

66
using Base: @propagate_inbounds

0 commit comments

Comments
 (0)