From 0578fb990389df99f88f2ebb5ea688f28c6bf5d1 Mon Sep 17 00:00:00 2001 From: glowcoil Date: Tue, 30 Apr 2024 17:41:50 -0500 Subject: [PATCH] update crate versions and changelogs --- CHANGELOG.md | 5 +++++ Cargo.toml | 6 +++--- com-scrape-types/CHANGELOG.md | 9 +++++++++ com-scrape-types/Cargo.toml | 2 +- com-scrape/CHANGELOG.md | 5 +++++ com-scrape/Cargo.toml | 2 +- vst3-bindgen/CHANGELOG.md | 5 +++++ vst3-bindgen/Cargo.toml | 4 ++-- 8 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 com-scrape-types/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index ce0f6a45..13ea5708 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.1.2 + +- Upgrade `vst3-bindgen` dependency to 0.2.2. +- Upgrade `com-scrape-types` dependency to 0.1.1. + ## 0.1.1 - Upgrade `vst3-bindgen` dependency to 0.2.1. diff --git a/Cargo.toml b/Cargo.toml index 8271a1f1..5c1bdb97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vst3" -version = "0.1.1" +version = "0.1.2" authors = ["Micah Johnston "] edition = "2021" description = "Rust bindings for the VST 3 API" @@ -9,10 +9,10 @@ repository = "https://github.com/coupler-rs/vst3-rs" license = "MIT OR Apache-2.0" [dependencies] -com-scrape-types = { path = "com-scrape-types", version = "0.1.0" } +com-scrape-types = { path = "com-scrape-types", version = "0.1.1" } [build-dependencies] -vst3-bindgen = { path = "vst3-bindgen", version = "0.2.1" } +vst3-bindgen = { path = "vst3-bindgen", version = "0.2.2" } [[example]] name = "gain" diff --git a/com-scrape-types/CHANGELOG.md b/com-scrape-types/CHANGELOG.md new file mode 100644 index 00000000..c3beb478 --- /dev/null +++ b/com-scrape-types/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.1.1 + +- Implement Send and Sync for ComPtr and ComRef where T: Send + Sync. + +## 0.1.0 + +- Initial release. diff --git a/com-scrape-types/Cargo.toml b/com-scrape-types/Cargo.toml index 54df91f4..007aba1f 100644 --- a/com-scrape-types/Cargo.toml +++ b/com-scrape-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "com-scrape-types" -version = "0.1.0" +version = "0.1.1" authors = ["Micah Johnston "] edition = "2021" description = "Support code for bindings generated with com-scrape" diff --git a/com-scrape/CHANGELOG.md b/com-scrape/CHANGELOG.md index 1392ddff..4a6f94d0 100644 --- a/com-scrape/CHANGELOG.md +++ b/com-scrape/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.1.3 + +- Add a `target` option to the `Generator` API for explicitly specifying a target triple. +- Loosen generic bounds on `Generator::skip_types`. + ## 0.1.2 - Fix cross-compilation build failure introduced in 0.1.1 ([#9](https://github.com/coupler-rs/vst3-rs/pull/9)). diff --git a/com-scrape/Cargo.toml b/com-scrape/Cargo.toml index 79b0dd87..48a122f4 100644 --- a/com-scrape/Cargo.toml +++ b/com-scrape/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "com-scrape" -version = "0.1.2" +version = "0.1.3" authors = ["Micah Johnston "] edition = "2021" description = "Automatically generates Rust bindings for COM interfaces" diff --git a/vst3-bindgen/CHANGELOG.md b/vst3-bindgen/CHANGELOG.md index 9fcaceb4..cc72dc55 100644 --- a/vst3-bindgen/CHANGELOG.md +++ b/vst3-bindgen/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.2.2 + +- Update `com-scrape` dependency to 0.1.3. +- Add an argument to `generate` for explicitly specifying a target triple. + ## 0.2.1 - Update `com-scrape` dependency to 0.1.2. diff --git a/vst3-bindgen/Cargo.toml b/vst3-bindgen/Cargo.toml index aa25274d..c9998d96 100644 --- a/vst3-bindgen/Cargo.toml +++ b/vst3-bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vst3-bindgen" -version = "0.2.1" +version = "0.2.2" authors = ["Micah Johnston "] edition = "2021" description = "Binding generator for the VST 3 API" @@ -8,4 +8,4 @@ repository = "https://github.com/coupler-rs/vst3-rs" license = "MIT OR Apache-2.0" [dependencies] -com-scrape = { path = "../com-scrape", version = "0.1.2" } +com-scrape = { path = "../com-scrape", version = "0.1.3" }