From 8133bbe414ba16b463da97ba1b8b3cc6fb0e6c01 Mon Sep 17 00:00:00 2001 From: Jackson Mills Date: Tue, 13 Jun 2023 13:42:37 -0700 Subject: [PATCH] Update CHANGELOG and pyproject.toml (#596) --- CHANGELOG.md | 5 ++++- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1be7b6360..afa575673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,17 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [[Unreleased]] + +## [1.9.0] - 2023-06-13 ### Added: - Added `submit_and_wait` to sign (if needed), autofill, submit a transaction and wait for its final outcome - `submit` and `send_reliable_submission` now accept an optional boolean param `fail_hard` (if `True` halt the submission if it's not immediately validated) - Added sidechain devnet support to faucet generation +- Added `user_agent` and `usage_context` to `generate_faucet_wallet` ### Changed: - Allowed keypairs.sign to take a hex string in addition to bytes ### Fixed: - Refactored `does_account_exist` and `get_balance` to avoid deprecated methods and use `ledger_index` parameter -- Fixed crashes in the SignerListSet validation +- Fixed crashes in the `SignerListSet` validation - Improved error messages in `send_reliable_submission` - Better error handling in reliable submission diff --git a/pyproject.toml b/pyproject.toml index 588546c27..1fc8f66f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xrpl-py" -version = "1.8.0" +version = "1.9.0" description = "A complete Python library for interacting with the XRP ledger" readme = "README.md" repository = "https://github.com/XRPLF/xrpl-py"