diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 43904fc..02c12ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,7 @@ jobs: - x86_64-unknown-linux-gnu - x86_64-pc-windows-msvc - aarch64-unknown-linux-gnu + - aarch64-apple-darwin include: - target: aarch64-unknown-linux-gnu os: ubuntu-latest @@ -20,6 +21,8 @@ jobs: os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest + - target: aarch64-apple-darwin + os: macos-latest - target: x86_64-pc-windows-msvc os: windows-latest @@ -124,6 +127,7 @@ jobs: mv rusty_json_schema-x86_64-unknown-linux-gnu/*.default ext/ mv rusty_json_schema-x86_64-pc-windows-msvc/*.default ext/ mv rusty_json_schema-aarch64-unknown-linux-gnu/*.default ext/ + mv rusty_json_schema-aarch64-apple-darwin/*.default ext/ - name: Build gem run: gem build *.gemspec @@ -146,6 +150,8 @@ jobs: - 2.6 - 2.7 - 3.0 + - 3.1 + - 3.2 runs-on: ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index a1774c3..b6093d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0] +### Added +- Support for aarch64-apple-darwin +- Support for Ruby 3.1 and 3.2 + ## [0.16.0] ### Changed - Added support for linux aarch64 diff --git a/lib/rusty_json_schema/version.rb b/lib/rusty_json_schema/version.rb index ddb7b92..fafcc0f 100644 --- a/lib/rusty_json_schema/version.rb +++ b/lib/rusty_json_schema/version.rb @@ -2,6 +2,6 @@ module RustyJSONSchema - VERSION = "0.16.0" + VERSION = "0.17.0" end