diff --git a/CHANGELOG.md b/CHANGELOG.md index 9735e3b0..98d93932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/oo-bindgen/Cargo.toml b/oo-bindgen/Cargo.toml index 7ee9a43f..8d352630 100644 --- a/oo-bindgen/Cargo.toml +++ b/oo-bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oo-bindgen" -version = "0.8.7" +version = "0.8.8" authors = ["Step Function I/O LLC "] edition = "2021" license = "MIT OR Apache-2.0" @@ -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"