diff --git a/CHANGELOG.md b/CHANGELOG.md index a8701c93..15ea39c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ +## v4.7.0 (2024-04-28) + +### Other + +* Merge pull request #464 from mraniki/dev + +🥚 update capitalcom.py Modify parameters SL / TP of a position. Modi… ([`8f9b904`](https://github.com/mraniki/cefi/commit/8f9b904d670b820525b30c4a98bfa8748b0bcf84)) + +### 🐛 + +* 🐛 ([`7a96e73`](https://github.com/mraniki/cefi/commit/7a96e7329e7e9cc62c86055644efbc6eb36070b5)) + +### 🥚 + +* 🥚 update capitalcom.py Modify parameters SL / TP of a position. Modify parameters such as SL / TP of a position that is opened. No capability to modify amount to reduce size ([`364af98`](https://github.com/mraniki/cefi/commit/364af98c6a12fd55d0ea2bb86a0f7c2f1bc869e4)) + + ## v4.6.9 (2024-04-27) ### Other diff --git a/cefi/__init__.py b/cefi/__init__.py index 70488121..abb9bdf5 100644 --- a/cefi/__init__.py +++ b/cefi/__init__.py @@ -1,4 +1,4 @@ -__version__ = "4.6.9" +__version__ = "4.7.0" from cefi.main import CexTrader diff --git a/pyproject.toml b/pyproject.toml index a138b83b..aa76e66e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cefi" -version = "4.6.9" +version = "4.7.0" description = "A python library, to interact with Crypto Exchanges (CCXT library) and brokers (IB & Capital.com)" authors = ["mraniki <8766259+mraniki@users.noreply.github.com>"] license = "MIT License" @@ -170,6 +170,7 @@ overgeneral-exceptions = [ + [tool.poetry.group.test.dependencies] @@ -285,6 +286,7 @@ pytest-loguru = "^0.4.0" + [tool.poetry.group.docs]