From d3ec223b3741e5b635c736a9acbf5ad65c040121 Mon Sep 17 00:00:00 2001 From: Bogdan Opanchuk Date: Mon, 25 Dec 2023 12:52:37 -0800 Subject: [PATCH] Update changelog and bump the version to 0.8.0 --- docs/changelog.rst | 12 +++++++++++- pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 612077a..4afbf16 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,14 +2,23 @@ Changelog --------- -0.7.1 (unreleased) +0.8.0 (unreleased) ~~~~~~~~~~~~~~~~~~ +Changed +~~~~~~~ + +- Added an explicit ``typing_extensions`` dependency. (PR_57_) +- Various boolean arguments are now keyword-only to prevent usage errors. (PR_57_) +- Field names clashing with Python built-ins (``hash``, ``type``, ``id``) are suffixed with an underscore. (PR_57_) + + Added ^^^^^ - ``Client.transact()`` takes an optional ``return_events`` argument, allowing one to get "return values" from the transaction via events. (PR_52_) - Exposed ``ClientSession``, ``ConstructorCall``, ``MethodCall``, ``EventFilter``, ``BoundConstructor``, ``BoundConstructorCall``, ``BoundMethod``, ``BoundMethodCall``, ``BoundEvent``, ``BoundEventFilter`` from the top level. (PR_56_) +- Various methods that had a default ``Amount(0)`` for a parameter can now take ``None``. (PR_57_) Fixed @@ -21,6 +30,7 @@ Fixed .. _PR_51: https://github.com/fjarri/pons/pull/51 .. _PR_52: https://github.com/fjarri/pons/pull/52 .. _PR_56: https://github.com/fjarri/pons/pull/56 +.. _PR_57: https://github.com/fjarri/pons/pull/57 0.7.0 (09-07-2023) diff --git a/pyproject.toml b/pyproject.toml index 26c15cd..3f8dd33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pons" -version = "0.7.0" +version = "0.8.0-dev" description = "Async RPC client for Ethereum" authors = [ {name = "Bogdan Opanchuk", email = "bogdan@opanchuk.net"},