Skip to content

Commit 15d40d2

Browse files
committed
1.0.1
1 parent 4c16ff3 commit 15d40d2

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Changelog
22

3+
## 1.0.1 - 2018-11-26
4+
5+
### Fixed
6+
7+
- pyo3 bugfix update.
8+
39
## 1.0.0 - 2018-11-23
410

511
### Added
612

713
- `orjson.dumps()` function.
8-
- `orjson.loads()` function.
14+
- `orjson.loads()` function.

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orjson"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = []
55
edition = '2018'
66
license = "Apache-2.0 OR MIT"

build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
py_maj=$(python -c 'import sys; print(str(sys.version_info.major))')
44
py_min=$(python -c 'import sys; print(str(sys.version_info.minor))')
55

6+
rm -f target/wheels/*
7+
68
pyo3-pack build -i "python${py_maj}.${py_min}" --release "$@"
79

810
pip install --force $(find target/wheels -name "*cp${py_maj}${py_min}*")

0 commit comments

Comments
 (0)