diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3155733..2b4d5a9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,13 +27,8 @@ jobs: include: - target: aarch64-unknown-linux-gnu os: ubuntu-latest - - target: aarch64-apple-darwin - os: macos-latest - target: x86_64-unknown-linux-gnu os: ubuntu-latest - - target: x86_64-apple-darwin - os: macos-latest - # Universal macOS binary is supported as universal-apple-darwin. - target: universal-apple-darwin os: macos-latest runs-on: ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a5db5e..f586d78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## v0.15.8 - 2023-12-18 + +### Highlights + +* Added `vendored-openssl` flag to enable GitHub actions builds for different systems. +* GitHub releases automatically builds CLI binary for macOS (Universal), and linux (arm and amd64) + ## v0.15.8-beta.1 - 2023-12-16 ### Highlights diff --git a/Cargo.toml b/Cargo.toml index 5dc015f..b28c9d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oneio" -version = "0.15.7" +version = "0.15.8" authors = ["Mingwei Zhang "] edition = "2021" readme = "README.md"