Skip to content

Commit

Permalink
Merge pull request #139 from kevinheavey/solana-py-33
Browse files Browse the repository at this point in the history
use solana-py 0.33
  • Loading branch information
kevinheavey committed Mar 29, 2024
2 parents 42ea185 + 04f96ab commit 48efce5
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 147 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.1
current_version = 0.20.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
"test_basic_3_bankrun",
"test_chat",
"test_cli",
"test_cli_init",
"test_composite",
"test_errors",
"test_events",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.20.0] - 2024-03-29

### Changed

- Use solana-py 0.33.0 [#(138)](https://github.com/kevinheavey/anchorpy/pull/138)

## [0.19.1] - 2024-02-12

### Fixed
Expand Down
194 changes: 78 additions & 116 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "anchorpy"
version = "0.19.1"
version = "0.20.0"
description = "The Python Anchor client."
readme = "README.md"
repository = "https://github.com/kevinheavey/anchorpy"
Expand All @@ -10,8 +10,8 @@ authors = ["kevinheavey <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
construct-typing = "^0.5.1"
solana = "^0.32.0"
solders = "^0.20.0"
solana = "^0.33.0"
solders = "^0.21.0"
borsh-construct = "^0.1.0"
websockets = ">=9.0,<11.0"
toolz = "^0.11.2"
Expand Down
2 changes: 1 addition & 1 deletion src/anchorpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
else __all_core
)

__version__ = "0.19.1"
__version__ = "0.20.0"
25 changes: 0 additions & 25 deletions tests/test_cli_init.py

This file was deleted.

0 comments on commit 48efce5

Please sign in to comment.