Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): prepare 0.8.0 #60

Merged
merged 1 commit into from
Mar 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## [0.8.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.7.0..0.8.0) - 2025-02-28

### ✨ Features

- Adds workflows releases branches - ([c2a40f3](https://github.com/midi2-dev/bl-midi2-rs/compare/97c22bc5ab13aa9cad8ea9f4f900ca7bac6b8dc3..1c662098f0391d5d101432a381db8453d9d5fe6f))
- Adds git cliff config - ([374770c](https://github.com/midi2-dev/bl-midi2-rs/commit/374770c79aefbf6b2514ae86e29de26d38695202))
- Adds cargo deny config (passing) - ([a0f50a8](https://github.com/midi2-dev/bl-midi2-rs/commit/a0f50a85f42b47dda618afc9a7ad150c3d06acb8))
- [**breaking**] Messages implement Copy when the underlying buffer does too - ([9d501ac](https://github.com/midi2-dev/bl-midi2-rs/commit/9d501aca5a6f2be9a21a0a06b251e9efde68dc9b))
- Messages implement Copy when the underlying buffer does too - ([bb3888e](https://github.com/midi2-dev/bl-midi2-rs/commit/bb3888e338abfc88035cc3ea84b49c494e9d466a))
- Rebuffer from exclusive to shared slice for aggregates - ([05af663](https://github.com/midi2-dev/bl-midi2-rs/commit/05af663f4c01c652891b5610871ce44def16c411))
- Rebuffer slice from mut slice - ([cb58c00](https://github.com/midi2-dev/bl-midi2-rs/commit/cb58c00dbe1d2f10860f7a611f5d5ca238007138))
- Adds clippy ci check - ([3444e9b](https://github.com/midi2-dev/bl-midi2-rs/commit/3444e9bd564600a8c61108044913287f5f3e27be))
- Fix typos automatically in the codespell hook - ([1627c4b](https://github.com/midi2-dev/bl-midi2-rs/commit/1627c4bfa0ee18b8e13a3ae197a225df73e87e0e))
- Replace rust git hooks with ci-friendly alternative - ([134cdac](https://github.com/midi2-dev/bl-midi2-rs/commit/134cdac38fe956bc6acbb2cf62fc3b094cf3583a))

### 🐛 Fixes

- Comment typo - ([8d6ddd9](https://github.com/midi2-dev/bl-midi2-rs/commit/8d6ddd9fb98a9dbb92a4416c526b6b83fbc3211c))
- Apply latest clippy lint fixes - ([6e2058e](https://github.com/midi2-dev/bl-midi2-rs/commit/6e2058e1a11432cce003f462c80e937bf99ab0e2))
- Comment typo - ([3537b05](https://github.com/midi2-dev/bl-midi2-rs/commit/3537b0513f98ae11cedeb33d27cdcb8ad471a8da))

### 🛠️ Refactor

- Github actions - ([8d7c599](https://github.com/midi2-dev/bl-midi2-rs/commit/8d7c599185ca879c280f4b73dc0207cc4b2b7cad))
- Restructure the workspace - ([e46ac36](https://github.com/midi2-dev/bl-midi2-rs/commit/e46ac360c50182b2b64e813c6d2c788e8a3f00ca))

### 📚 Documentation

- Correct docs for default features - ([b84e8e5](https://github.com/midi2-dev/bl-midi2-rs/commit/b84e8e5adbf944a8b195c635392106bde141b4a7))
- Add readme badges - ([9d59452](https://github.com/midi2-dev/bl-midi2-rs/commit/9d594520bcbe663c365692329fc41d1c9fccd30d))

## New Contributors ❤️

* @pre-commit-ci[bot] made their first contribution in [#41](https://github.com/midi2-dev/bl-midi2-rs/pull/41)
* @Philipp-M made their first contribution in [#38](https://github.com/midi2-dev/bl-midi2-rs/pull/38)

## [0.7.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.6.5..0.7.0) - 2025-01-18

### 🐛 Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ You'll want to setup midi2 without default features to compile
without the `std` feature.

```toml
midi2 = { version = "0.7.0", default-features = false, features = ["channel-voice2", "sysex7"], }
midi2 = { version = "0.8.0", default-features = false, features = ["channel-voice2", "sysex7"], }
```

### Generic Representation
Expand Down
4 changes: 2 additions & 2 deletions midi2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "midi2"
version = "0.7.0"
version = "0.8.0"
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
edition = "2021"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/midi2-dev/bl-midi2-rs.git"
[dependencies]
derive_more = { version = "2.0.1", features = ["from"], default-features = false }
fixed = "1.28.0"
midi2_proc = { version = "0.7.0", path = "../midi2_proc" }
midi2_proc = { version = "0.8.0", path = "../midi2_proc" }
ux = "0.1.6"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion midi2_proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midi2_proc"
description = "Internal procedural macro crate. Only intended for use with midi2"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand Down