Skip to content

Commit

Permalink
update crate versions and changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
glowcoil committed Apr 30, 2024
1 parent 5b4ae73 commit 0578fb9
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vst3"
version = "0.1.1"
version = "0.1.2"
authors = ["Micah Johnston <[email protected]>"]
edition = "2021"
description = "Rust bindings for the VST 3 API"
Expand All @@ -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"
Expand Down
9 changes: 9 additions & 0 deletions com-scrape-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## 0.1.1

- Implement Send and Sync for ComPtr<T> and ComRef<T> where T: Send + Sync.

## 0.1.0

- Initial release.
2 changes: 1 addition & 1 deletion com-scrape-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "com-scrape-types"
version = "0.1.0"
version = "0.1.1"
authors = ["Micah Johnston <[email protected]>"]
edition = "2021"
description = "Support code for bindings generated with com-scrape"
Expand Down
5 changes: 5 additions & 0 deletions com-scrape/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)).
Expand Down
2 changes: 1 addition & 1 deletion com-scrape/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "com-scrape"
version = "0.1.2"
version = "0.1.3"
authors = ["Micah Johnston <[email protected]>"]
edition = "2021"
description = "Automatically generates Rust bindings for COM interfaces"
Expand Down
5 changes: 5 additions & 0 deletions vst3-bindgen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions vst3-bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "vst3-bindgen"
version = "0.2.1"
version = "0.2.2"
authors = ["Micah Johnston <[email protected]>"]
edition = "2021"
description = "Binding generator for the VST 3 API"
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" }

0 comments on commit 0578fb9

Please sign in to comment.