From 491fb61595de022226e37076a4757a052869aa46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 21 Mar 2024 09:16:05 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.0.1=20=E2=86=92=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ autotrader/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) 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__",