Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.8.8 ###
* :star: Modernize lints and CI workflows. See [#129](https://github.com/stepfunc/oo_bindgen/pull/129).
* :star: Add RID for aarch64-pc-windows-msvc in .NET backend

### 0.8.7 ###
* :star: Sets assembly version information to match the schema in C# backend

Expand Down
6 changes: 3 additions & 3 deletions oo-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oo-bindgen"
version = "0.8.7"
version = "0.8.8"
authors = ["Step Function I/O LLC <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -11,12 +11,12 @@ readme = "../README.md"
[dependencies]
clap = { version = "4", features = ["derive"] }
dunce = "1.0.1"
thiserror = "1.0.20" # jni crate requires this patch version or better for some reason
thiserror = "2.0" # jni crate requires this patch version or better for some reason
semver = "1"
regex = "1"
lazy_static = "1.3"
backtrace = "0.3"
heck = "0.4"
heck = "0.5"
platforms = "2"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1"
Expand Down
Loading