Skip to content

Commit

Permalink
Merge pull request #80 from kevinheavey/solana-1.18.1
Browse files Browse the repository at this point in the history
Upgrade to Solana 1.18.1
  • Loading branch information
kevinheavey authored Feb 12, 2024
2 parents a644ac2 + 0eb0438 commit 480073e
Show file tree
Hide file tree
Showing 19 changed files with 972 additions and 538 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.19.0
current_version = 0.20.0
commit = True
tag = False

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
uses: messense/maturin-action@v1
with:
target: x64
args: --release --no-default-features --out dist
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Install built wheel
run: |
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
with:
target: i686
manylinux: auto
args: --release --no-default-features --out dist
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
with:
target: i686-unknown-linux-musl
manylinux: musllinux_1_2
args: --release --no-default-features --out dist
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand All @@ -245,7 +245,7 @@ jobs:
with:
target: aarch64
manylinux: auto
args: --release --out dist
args: --release --no-default-features --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand All @@ -271,7 +271,7 @@ jobs:
with:
target: armv7
manylinux: auto
args: --release --no-default-features --out dist
args: --release --no-default-features -F ring --out dist
maturin-version: ${{ env.maturin_version }}
- name: Upload wheels
uses: actions/upload-artifact@v2
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [0.20.0] - 2024-02-12

### Added

- Add address lookup table instructions and state [(#79)](https://github.com/kevinheavey/solders/pull/79)

### Changed

- Upgrade to Solana 1.18.1 [(#80)](https://github.com/kevinheavey/solders/pull/80). This also takes out the `ring` dependency (and all crates that use it) for linux-aarch64 builds.

## [0.19.0] - 2024-01-01

### Added
Expand Down
Loading

0 comments on commit 480073e

Please sign in to comment.