Skip to content

Commit

Permalink
chore: Merge branch 'release/0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLeadbetter committed Mar 2, 2025
2 parents 2b782e9 + a465b6e commit 120c6d7
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .github/scripts/configure-release-pat.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

if [ -z "$1" ]; then
echo "Usage: $0 <PAT>"
exit 1
fi

PAT=$1

git config --global user.email "[email protected] "
git config --global user.name "GitHub Actions"
git remote set-url origin https://x-access-token:${PAT}@github.com/midi2-dev/bl-midi2-rs
2 changes: 2 additions & 0 deletions .github/workflows/finish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
verbose: true
- name: Setup git-flow
run: ./.github/scripts/setup-git-flow.sh
- name: Configure PAT for release
run: ./.github/scripts/configure-release-pat.sh ${{ secrets.RELEASE_PAT }}
- name: Finish release
run: git flow ${{ github.event.inputs.type }} finish ${{ github.event.inputs.version }} -m ${{ github.event.inputs.version }} --push
- name: Publish midi2_proc
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

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

### 🐛 Fixes

- Midi2 crate has no readme - ([ca05654..282e1f8](https://github.com/midi2-dev/bl-midi2-rs/compare/ca056540bcb27b57040d8d0860aa4f97a02e0eeb..282e1f8fd938b663be0bc663eabad989b0b3f377))


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

### ✨ Features
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.8.0", default-features = false, features = ["channel-voice2", "sysex7"], }
midi2 = { version = "0.8.1", default-features = false, features = ["channel-voice2", "sysex7"], }
```

### Generic Representation
Expand Down
6 changes: 3 additions & 3 deletions midi2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "midi2"
version = "0.8.0"
version = "0.8.1"
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
edition = "2021"
readme = "README.md"
readme = "../README.md"
license = "MIT OR Apache-2.0"
authors = [
"Ben Leadbetter <[email protected]>",
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.8.0", path = "../midi2_proc" }
midi2_proc = { version = "0.8.1", 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.8.0"
version = "0.8.1"
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 120c6d7

Please sign in to comment.