Skip to content

Commit

Permalink
3.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ijl committed Apr 15, 2024
1 parent 0c1091c commit 632345a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Changelog


## 3.10.1 - 2024-04-15

### Fixed

- Serializing `numpy.ndarray` with non-native endianness raises
`orjson.JSONEncodeError`.

### Changed

- Improve performance of serializing.


## 3.10.0 - 2024-03-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orjson"
version = "3.10.0"
version = "3.10.1"
authors = ["ijl <[email protected]>"]
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1208,8 +1208,8 @@ is prudent to pin the nightly version because that channel can introduce
breaking changes.

orjson is tested for amd64, aarch64, arm7, ppc64le, and s390x on Linux. It
is tested for amd64 on macOS and cross-compiles for aarch64. For Windows
it is tested on amd64 and i686.
is tested for either aarch64 or amd64 on macOS and cross-compiles for the other,
depending on version. For Windows it is tested on amd64 and i686.

There are no runtime dependencies other than libc.

Expand Down

0 comments on commit 632345a

Please sign in to comment.