From 2fb89ec0207c48d1f8df36ac39a6069ae575319d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 22 Mar 2024 23:37:07 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.1.0=20=E2=86=92=201.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ autotrader/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf0016e5..1eab0614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # AutoTrader Changelog +## v1.1.1 (2024-03-22) + +### Fix + +- **ccxt**: type conversion of order limits check + ## v1.1.0 (2024-03-21) ### Feat diff --git a/autotrader/__init__.py b/autotrader/__init__.py index ddab9ce2..06fa6fd3 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.1.0" +__version__ = "1.1.1" diff --git a/pyproject.toml b/pyproject.toml index 73004071..079baacc 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.1.0" +version = "1.1.1" tag_format = "v$version" version_files = [ "autotrader/__init__.py:__version__",