Skip to content

Commit 120c6d7

Browse files
committed
chore: Merge branch 'release/0.8.1'
2 parents 2b782e9 + a465b6e commit 120c6d7

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
if [ -z "$1" ]; then
4+
echo "Usage: $0 <PAT>"
5+
exit 1
6+
fi
7+
8+
PAT=$1
9+
10+
git config --global user.email "[email protected] "
11+
git config --global user.name "GitHub Actions"
12+
git remote set-url origin https://x-access-token:${PAT}@github.com/midi2-dev/bl-midi2-rs

.github/workflows/finish-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
verbose: true
3636
- name: Setup git-flow
3737
run: ./.github/scripts/setup-git-flow.sh
38+
- name: Configure PAT for release
39+
run: ./.github/scripts/configure-release-pat.sh ${{ secrets.RELEASE_PAT }}
3840
- name: Finish release
3941
run: git flow ${{ github.event.inputs.type }} finish ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }} --push
4042
- name: Publish midi2_proc

CHANGELOG.md

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

3+
## [0.8.1](https://github.com/midi2-dev/bl-midi2-rs/compare/0.8.0..0.8.1) - 2025-03-02
4+
5+
### 🐛 Fixes
6+
7+
- Midi2 crate has no readme - ([ca05654..282e1f8](https://github.com/midi2-dev/bl-midi2-rs/compare/ca056540bcb27b57040d8d0860aa4f97a02e0eeb..282e1f8fd938b663be0bc663eabad989b0b3f377))
8+
9+
310
## [0.8.0](https://github.com/midi2-dev/bl-midi2-rs/compare/0.7.0..0.8.0) - 2025-02-28
411

512
### ✨ Features

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.8.0", default-features = false, features = ["channel-voice2", "sysex7"], }
166+
midi2 = { version = "0.8.1", default-features = false, features = ["channel-voice2", "sysex7"], }
167167
```
168168

169169
### Generic Representation

midi2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "midi2"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
55
edition = "2021"
6-
readme = "README.md"
6+
readme = "../README.md"
77
license = "MIT OR Apache-2.0"
88
authors = [
99
"Ben Leadbetter <[email protected]>",
@@ -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.8.0", path = "../midi2_proc" }
16+
midi2_proc = { version = "0.8.1", 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.8.0"
4+
version = "0.8.1"
55
edition = "2021"
66
readme = "README.md"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)