From b2d44122cca449f531b7c8d942f68aee7ed8d2ec Mon Sep 17 00:00:00 2001 From: jadamcrain Date: Mon, 5 May 2025 10:47:03 -0700 Subject: [PATCH 1/3] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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 From 6826f5009e63f99a00a87d17829de5e930abdc1c Mon Sep 17 00:00:00 2001 From: jadamcrain Date: Mon, 5 May 2025 10:47:59 -0700 Subject: [PATCH 2/3] bump version --- oo-bindgen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oo-bindgen/Cargo.toml b/oo-bindgen/Cargo.toml index 7ee9a43f..524cccd6 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" From c3505c1b99b15069f65602c485ac804419502cce Mon Sep 17 00:00:00 2001 From: jadamcrain Date: Mon, 5 May 2025 10:55:47 -0700 Subject: [PATCH 3/3] bump some dependency versions --- oo-bindgen/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oo-bindgen/Cargo.toml b/oo-bindgen/Cargo.toml index 524cccd6..8d352630 100644 --- a/oo-bindgen/Cargo.toml +++ b/oo-bindgen/Cargo.toml @@ -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"