diff --git a/CHANGELOG.md b/CHANGELOG.md index 48b8c7a7..be8b07eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ +## v7.0.10 (2024-02-11) + +### Other + +* Merge pull request #572 from mraniki/dev + +⬆️ 🤖 - You look like a million dollars All green and wrinkled ([`747548a`](https://github.com/mraniki/dxsp/commit/747548aa3318518e5fe9a5b83c497d9211068180)) + +* Remove DexEVM protocol and update __all__ in __init__.py ([`cbda811`](https://github.com/mraniki/dxsp/commit/cbda811704713db6f468bb01a1121178e7cd0467)) + +* Remove eth-tester and add web3client to pyproject.toml ([`462e6c1`](https://github.com/mraniki/dxsp/commit/462e6c1d441f35e20334943c9ccd8c96c59cb613)) + +### Update + +* Update web3 version ([`de7c47f`](https://github.com/mraniki/dxsp/commit/de7c47f5cfb10ab37491ca21503de3eab7442255)) + +* Update eth-tester version ([`c5ab509`](https://github.com/mraniki/dxsp/commit/c5ab50906a32503947ea9124665f7940afe650d6)) + +* Update web3 and eth-tester versions ([`7cd2829`](https://github.com/mraniki/dxsp/commit/7cd2829e29b60d5bca3dee6c21931889a104cc68)) + +* Update eth-tester version to 0.9.1b2 ([`12ddbc7`](https://github.com/mraniki/dxsp/commit/12ddbc7251e20569dbc943ecb366f459842bff0a)) + +### ⬆️ + +* ⬆️ 🛠️(deps): update dependency web3 to v6.15.1 ([`052877e`](https://github.com/mraniki/dxsp/commit/052877e0c069247016d186a4abc7b3693d5a76e3)) + + ## v7.0.9 (2024-02-03) ### Other diff --git a/dxsp/__init__.py b/dxsp/__init__.py index 25bad05f..11f12e17 100644 --- a/dxsp/__init__.py +++ b/dxsp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "7.0.9" +__version__ = "7.0.10" from dxsp.main import DexSwap diff --git a/pyproject.toml b/pyproject.toml index 1d31c285..025fdf2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "dxsp" -version = "7.0.9" +version = "7.0.10" description = "DXSP (DeX SwaP), A defi swap helper package. Swap made easy." authors = ["mraniki <8766259+mraniki@users.noreply.github.com>"] license = "MIT License" @@ -66,6 +66,7 @@ fixable = ["ALL"] + [tool.poetry.group.test.dependencies] pytest = "^7.0" pytest-cov = "^4.1" @@ -120,6 +121,7 @@ skips = ["B101","B104"] + [tool.poetry.group.docs]