From 655d8473dc40b160850e77f5528228ec05d7c206 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 23 Mar 2024 02:41:11 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.1.1=20=E2=86=92=201.1.2?= 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 1eab0614..4f7a14e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # AutoTrader Changelog +## v1.1.2 (2024-03-23) + +### Fix + +- **AutoTrader**: add initial check fro active bots directory before entering trade loop + ## v1.1.1 (2024-03-22) ### Fix diff --git a/autotrader/__init__.py b/autotrader/__init__.py index 06fa6fd3..c2ef90bf 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.1" +__version__ = "1.1.2" diff --git a/pyproject.toml b/pyproject.toml index 079baacc..53ec7e22 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.1" +version = "1.1.2" tag_format = "v$version" version_files = [ "autotrader/__init__.py:__version__",