Skip to content

Commit f5d1e62

Browse files
committed
chore: bump version for release and generate CHANGELOG
ci: macos universal library GHA
1 parent c18dee6 commit f5d1e62

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/workflows/build-libs.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ jobs:
3434
rustup target add aarch64-apple-ios
3535
cd rust
3636
cargo build --release
37+
cargo build --release --target=aarch64-apple-darwin
38+
lipo -create -output librust.dylib target/release/librust.dylib target/aarch64-apple-darwin/release/librust.dylib
3739
cargo build --release --target=aarch64-apple-ios
3840
- uses: actions/upload-artifact@v3
3941
with:
4042
name: RustLib
4143
path: |
42-
rust/target/release/librust.dylib
44+
rust/librust.dylib
4345
rust/target/aarch64-apple-ios/release/librust.a

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### 0.3.1 (2022-09-29)
6+
7+
### Bug Fixes
8+
* macos binary not working for universal applications
9+
* flutter windows unneeded librust.lib file remove ([e9fc90c](https://github.com/KRTirtho/metadata_god/commit/e9fc90cb8b0245f6537e1a49cd63105f8db068a0))
10+
511
### 0.3.0 (2022-09-27)
612

713
### Features

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ packages:
127127
path: ".."
128128
relative: true
129129
source: path
130-
version: "0.3.0"
130+
version: "0.3.1"
131131
path:
132132
dependency: transitive
133133
description:

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: metadata_god
22
description: Plugin for retrieving and writing audio tags/metadata from audio files
3-
version: 0.3.0
3+
version: 0.3.1
44
homepage: https://github.com/KRTirtho/metadata_god
55

66
environment:

0 commit comments

Comments
 (0)