Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type stub typo #12

Merged
merged 4 commits into from
Oct 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.5.1
current_version = 0.5.2
commit = True
tag = False

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.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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <kevinheavey123@gmail.com>"]
license = "Apache"
Expand Down Expand Up @@ -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"}
Expand Down
6 changes: 3 additions & 3 deletions python/solders/rpc/responses.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2100,7 +2100,7 @@ SlotUpdate = Union[
SlotUpdateFrozen,
]

RPCResponse = Union[
RPCResult = Union[
RpcError,
GetAccountInfoResp,
GetAccountInfoJsonParsedResp,
Expand Down Expand Up @@ -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: ...