Skip to content

Commit 22ecb60

Browse files
committed
chore(release): prepare 0.8.0
1 parent 1c66209 commit 22ecb60

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.7.0..0.8.0) - 2025-02-28
4+
5+
### ✨ Features
6+
7+
- Adds workflows releases branches - ([c2a40f3](https://github.com/midi2-dev/bl-midi2-rs/compare/97c22bc5ab13aa9cad8ea9f4f900ca7bac6b8dc3..1c662098f0391d5d101432a381db8453d9d5fe6f))
8+
- Adds git cliff config - ([374770c](https://github.com/midi2-dev/bl-midi2-rs/commit/374770c79aefbf6b2514ae86e29de26d38695202))
9+
- Adds cargo deny config (passing) - ([a0f50a8](https://github.com/midi2-dev/bl-midi2-rs/commit/a0f50a85f42b47dda618afc9a7ad150c3d06acb8))
10+
- [**breaking**] Messages implement Copy when the underlying buffer does too - ([9d501ac](https://github.com/midi2-dev/bl-midi2-rs/commit/9d501aca5a6f2be9a21a0a06b251e9efde68dc9b))
11+
- Messages implement Copy when the underlying buffer does too - ([bb3888e](https://github.com/midi2-dev/bl-midi2-rs/commit/bb3888e338abfc88035cc3ea84b49c494e9d466a))
12+
- Rebuffer from exclusive to shared slice for aggregates - ([05af663](https://github.com/midi2-dev/bl-midi2-rs/commit/05af663f4c01c652891b5610871ce44def16c411))
13+
- Rebuffer slice from mut slice - ([cb58c00](https://github.com/midi2-dev/bl-midi2-rs/commit/cb58c00dbe1d2f10860f7a611f5d5ca238007138))
14+
- Adds clippy ci check - ([3444e9b](https://github.com/midi2-dev/bl-midi2-rs/commit/3444e9bd564600a8c61108044913287f5f3e27be))
15+
- Fix typos automatically in the codespell hook - ([1627c4b](https://github.com/midi2-dev/bl-midi2-rs/commit/1627c4bfa0ee18b8e13a3ae197a225df73e87e0e))
16+
- Replace rust git hooks with ci-friendly alternative - ([134cdac](https://github.com/midi2-dev/bl-midi2-rs/commit/134cdac38fe956bc6acbb2cf62fc3b094cf3583a))
17+
18+
### 🐛 Fixes
19+
20+
- Comment typo - ([8d6ddd9](https://github.com/midi2-dev/bl-midi2-rs/commit/8d6ddd9fb98a9dbb92a4416c526b6b83fbc3211c))
21+
- Apply latest clippy lint fixes - ([6e2058e](https://github.com/midi2-dev/bl-midi2-rs/commit/6e2058e1a11432cce003f462c80e937bf99ab0e2))
22+
- Comment typo - ([3537b05](https://github.com/midi2-dev/bl-midi2-rs/commit/3537b0513f98ae11cedeb33d27cdcb8ad471a8da))
23+
24+
### 🛠️ Refactor
25+
26+
- Github actions - ([8d7c599](https://github.com/midi2-dev/bl-midi2-rs/commit/8d7c599185ca879c280f4b73dc0207cc4b2b7cad))
27+
- Restructure the workspace - ([e46ac36](https://github.com/midi2-dev/bl-midi2-rs/commit/e46ac360c50182b2b64e813c6d2c788e8a3f00ca))
28+
29+
### 📚 Documentation
30+
31+
- Correct docs for default features - ([b84e8e5](https://github.com/midi2-dev/bl-midi2-rs/commit/b84e8e5adbf944a8b195c635392106bde141b4a7))
32+
- Add readme badges - ([9d59452](https://github.com/midi2-dev/bl-midi2-rs/commit/9d594520bcbe663c365692329fc41d1c9fccd30d))
33+
34+
## New Contributors ❤️
35+
36+
* @pre-commit-ci[bot] made their first contribution in [#41](https://github.com/midi2-dev/bl-midi2-rs/pull/41)
37+
* @Philipp-M made their first contribution in [#38](https://github.com/midi2-dev/bl-midi2-rs/pull/38)
38+
339
## [0.7.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.6.5..0.7.0) - 2025-01-18
440

541
### 🐛 Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ You'll want to setup midi2 without default features to compile
163163
without the `std` feature.
164164

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

169169
### Generic Representation

midi2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "midi2"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
55
edition = "2021"
66
readme = "README.md"
@@ -13,7 +13,7 @@ repository = "https://github.com/midi2-dev/bl-midi2-rs.git"
1313
[dependencies]
1414
derive_more = { version = "2.0.1", features = ["from"], default-features = false }
1515
fixed = "1.28.0"
16-
midi2_proc = { version = "0.7.0", path = "../midi2_proc" }
16+
midi2_proc = { version = "0.8.0", path = "../midi2_proc" }
1717
ux = "0.1.6"
1818

1919
[dev-dependencies]

midi2_proc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midi2_proc"
33
description = "Internal procedural macro crate. Only intended for use with midi2"
4-
version = "0.7.0"
4+
version = "0.8.0"
55
edition = "2021"
66
readme = "README.md"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)