Skip to content

Commit

Permalink
prepare changelogs and crate versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
glowcoil committed Jan 10, 2024
1 parent 4a02439 commit cabdab3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.1

- Upgrade `vst3-bindgen` dependency to 0.2.1.

## 0.1.0

- Split up `vst3-bindgen` crate. `vst3-bindgen` is now a library which `vst3` uses from `build.rs`.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vst3"
version = "0.1.0"
version = "0.1.1"
authors = ["Micah Johnston <[email protected]>"]
edition = "2021"
description = "Rust bindings for the VST 3 API"
Expand All @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
com-scrape-types = { path = "com-scrape-types", version = "0.1.0" }

[build-dependencies]
vst3-bindgen = { path = "vst3-bindgen", version = "0.2.0" }
vst3-bindgen = { path = "vst3-bindgen", version = "0.2.1" }

[[example]]
name = "gain"
Expand Down
4 changes: 4 additions & 0 deletions com-scrape/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.2

- Fix cross-compilation build failure introduced in 0.1.1 ([#9](https://github.com/coupler-rs/vst3-rs/pull/9)).

## 0.1.1

- Check for and report Clang errors when parsing C++ headers.
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.1"
version = "0.1.2"
authors = ["Micah Johnston <[email protected]>"]
edition = "2021"
description = "Automatically generates Rust bindings for COM interfaces"
Expand Down
4 changes: 4 additions & 0 deletions vst3-bindgen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.1

- Update `com-scrape` dependency to 0.1.2.

## 0.2.0

- Split up `vst3-bindgen` crate. `vst3-bindgen` is now a library which `vst3` uses from `build.rs`.
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.0"
version = "0.2.1"
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.1" }
com-scrape = { path = "../com-scrape", version = "0.1.2" }

0 comments on commit cabdab3

Please sign in to comment.