Releases: gerrymanoim/libpy_simdjson
Releases · gerrymanoim/libpy_simdjson
0.4.0 🌈
What’s Changed
Build Changes
- Bump actions/setup-python from v2.1.3 to v2.1.4 (#27) @dependabot
- Bump actions/setup-python from v2.1.2 to v2.1.3 (#26) @dependabot
- BLD: Get Rid of set-env (#31) @gerrymanoim
Enhancements
- ENH: bump simdjson to 6.0 (#29) @gerrymanoim
Release Changes
- REL: 0.4.0 (#30) @gerrymanoim
0.3.0 🌈
What’s Changed
Note Due to upstream changes in simdjson
.at()
calls in Object
and Array
have been changed to .at_pointer()
. Paths must also now be prefixed with /
to comply with the JSON pointer spec, i.e:
- valid in 0.2.0:
statuses.at(b"33/created_at")
- valid in 0.3.0:
statuses.at_pointer(b"/33/created_at")
Build
- BLD: Bump actions/setup-python from v2.1.1 to v2.1.2 (#23) @dependabot
Enhancements
- ENH: Bump simdjson to 5.0 (#24) @gerrymanoim
Release Changes
- REL: 0.3.0 (#25) @gerrymanoim
0.2.0 🌈
What’s Changed
Small improvements and library bumps.
Benchmark Changes
- BENCH: Add pysimdjson.parse to benchmarks (#17) @gerrymanoim
- BENCH: Add random Array indexing benchmark (#16) @gerrymanoim
- BENCH: Add libpy_simdjson_as_py_obj benchmark (#13) @gerrymanoim
- BENCH: Add random element access benchmark (#9) @gerrymanoim
Build changes
- BLD: Bump actions/setup-python from v2 to v2.1.1 (#18) @dependabot
Documentation Updates
- DOC: Add notes on install instructions (#14) @gerrymanoim
- DOC: Add benchmark note (#12) @gerrymanoim
Enhancements
- ENH: Implement
Array.count()
andArray.index()
(#20) @gerrymanoim - ENH: implement == on Array and object (#21) @gerrymanoim
- ENH: Bump simdjson and expose version (#15) @gerrymanoim
Release Changes
- REL: 0.2.0 (#22) @gerrymanoim
0.1.0 Initial Release
What’s Changed
This is the initial release....so everything.
Benchmark Changes
- BENCH: Create benchmarking test and a GHA to run it (#4) @gerrymanoim
Build Changes
- BLD: Install from sdist as part of CI (#7) @gerrymanoim
- BLD: Add GHA and start running CI (#3) @gerrymanoim
Documentation Updates
- DOC: document benchmarks (#5) @gerrymanoim
Enhancements
- ENH: add Object.values and fix Object.iter to return keys (#6) @llllllllll
Initial Commits
- WIP: misc improvements (#2) @llllllllll
- DEV: Rework interface, now with shared pointers and easier usage. (#1) @gerrymanoim