diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 651fdcc3..6a3483ea 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.1 +current_version = 0.5.2 commit = True tag = False diff --git a/CHANGELOG.md b/CHANGELOG.md index 871869d3..daa28ede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.2] - 2022-10-01 + +### Fixed + +- Fix incorrect alias name in type stubs [(#12)](https://github.com/kevinheavey/solders/pull/11) + ## [0.5.1] - 2022-09-29 ### Added diff --git a/Cargo.lock b/Cargo.lock index 4735f399..c402ae4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1464,7 +1464,7 @@ dependencies = [ [[package]] name = "solders" -version = "0.5.1" +version = "0.5.2" dependencies = [ "base64 0.13.0", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 49a17eb1..d20be76c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "solders" -version = "0.5.1" +version = "0.5.2" edition = "2021" include = ["/src", "/LICENSE", "/pyproject.toml"] description = "Python binding to the Solana Rust SDK" diff --git a/docs/conf.py b/docs/conf.py index e69b40c4..88d9d867 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "Kevin Heavey" # The full version, including alpha/beta/rc tags -release = "0.5.1" +release = "0.5.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2b7a30ad..f08b807c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "solders" -version = "0.5.1" +version = "0.5.2" description = "Python bindings for Solana Rust tools" authors = ["kevinheavey "] license = "Apache" @@ -29,7 +29,7 @@ build-backend = "maturin" [project] name = "solders" -version = "0.5.1" +version = "0.5.2" description = "Python binding to the Solana Rust SDK" authors = [ {name = "kevinheavey", email = "kevinheavey123@gmail.com"} ] license = {file = "LICENSE"} diff --git a/python/solders/rpc/responses.pyi b/python/solders/rpc/responses.pyi index 39c2412e..8d2ef848 100644 --- a/python/solders/rpc/responses.pyi +++ b/python/solders/rpc/responses.pyi @@ -2100,7 +2100,7 @@ SlotUpdate = Union[ SlotUpdateFrozen, ] -RPCResponse = Union[ +RPCResult = Union[ RpcError, GetAccountInfoResp, GetAccountInfoJsonParsedResp, @@ -2163,7 +2163,7 @@ RPCResponse = Union[ SimulateTransactionResp, ] -def batch_to_json(resps: Sequence[RPCResponse]) -> str: ... -def batch_from_json(raw: str, parsers: Sequence[Any]) -> List[RPCResponse]: ... +def batch_to_json(resps: Sequence[RPCResult]) -> str: ... +def batch_from_json(raw: str, parsers: Sequence[Any]) -> List[RPCResult]: ... def parse_notification(raw: str) -> Notification: ... def parse_websocket_message(raw: str) -> WebsocketMessage: ...