Skip to content

Commit

Permalink
Merge pull request #17 from kevinheavey/error-parsing
Browse files Browse the repository at this point in the history
Fix RPC error parsing
  • Loading branch information
kevinheavey authored Oct 14, 2022
2 parents 8fd21d1 + 679aba6 commit db904e6
Show file tree
Hide file tree
Showing 12 changed files with 986 additions and 146 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.8.1
current_version = 0.9.0
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.9.0] - 2022-10-14

### Fixed

- Fix RPC error parsing and introduce new classes for RPC error messages [(#17)](https://github.com/kevinheavey/solders/pull/17)

## [0.8.1] - 2022-10-10

### Fixed
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.8.1"
version = "0.9.0"
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.8.1"
release = "0.9.0"


# -- 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.8.1"
version = "0.9.0"
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.8.1"
version = "0.9.0"
description = "Python binding to the Solana Rust SDK"
authors = [ {name = "kevinheavey", email = "kevinheavey123@gmail.com"} ]
license = {file = "LICENSE"}
Expand Down
Loading

0 comments on commit db904e6

Please sign in to comment.