Skip to content

Commit

Permalink
Update changelog and bump the version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fjarri committed Dec 25, 2023
1 parent b0ebbc5 commit d3ec223
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"},
Expand Down

0 comments on commit d3ec223

Please sign in to comment.