diff --git a/CHANGELOG.md b/CHANGELOG.md index 827ddf7e..df5763e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v1.0.28 (2023-04-14) +### Fix +* Token search and abi display for multiple blockchain, enhance the example with healthcheck ([`cbb94ba`](https://github.com/mraniki/dxsp/commit/cbb94ba005df06060064cb4e90b593e62e28e7d1)) +* Gecko and improve ABI retrieval response. ([`d262f7e`](https://github.com/mraniki/dxsp/commit/d262f7e970e7de8e3f6247b6ae8665f1538b4b88)) + ## v1.0.27 (2023-04-14) ### Fix * Example ([`5906033`](https://github.com/mraniki/dxsp/commit/5906033ca2c683ae568bc365cdde44149e2aed81)) diff --git a/dxsp/__init__.py b/dxsp/__init__.py index 36827292..245ee7eb 100644 --- a/dxsp/__init__.py +++ b/dxsp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.27" +__version__ = "1.0.28" from dxsp.main import DexSwap from dxsp.assets import blockchains diff --git a/pyproject.toml b/pyproject.toml index def258f7..dc49787d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dxsp" -version = "1.0.27" +version = "1.0.28" description = "DXSP (DeX SwaP), A defi swap helper package. Swap made easy." authors = ["mraniki <8766259+mraniki@users.noreply.github.com>"] license = "MIT License"