diff --git a/CHANGELOG.md b/CHANGELOG.md index c89fbddb..bf0016e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # AutoTrader Changelog +## v1.1.0 (2024-03-21) + +### Feat + +- **logging**: logging kwargs get passed to strategy instances + +### Fix + +- **ccxt**: pass ccxt order params when modifying order + ## v1.0.1 (2024-03-12) ### Fix diff --git a/autotrader/__init__.py b/autotrader/__init__.py index 5b26a08e..ddab9ce2 100644 --- a/autotrader/__init__.py +++ b/autotrader/__init__.py @@ -34,4 +34,4 @@ from .brokers.virtual import Broker as VirtualBroker # Define version number -__version__ = "1.0.1" +__version__ = "1.1.0" diff --git a/pyproject.toml b/pyproject.toml index a1d627b7..73004071 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [tool] [tool.commitizen] name = "cz_conventional_commits" -version = "1.0.1" +version = "1.1.0" tag_format = "v$version" version_files = [ "autotrader/__init__.py:__version__",