From cdb01a8c9e1d271859d6d927264cb0916daf4276 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 12 Mar 2024 10:25:04 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.0.0=20=E2=86=92=201.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 ++++++++ autotrader/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a80c63a5..c89fbddb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # AutoTrader Changelog +## v1.0.1 (2024-03-12) + +### Fix + +- **ccxt**: add exception handling for place_order +- **AutoTrader**: only try instantiate notifier if notify > 0 +- **Notifier**: reimplement telegram notifier + ## v1.0.0 (2024-03-10) ### Feat diff --git a/autotrader/__init__.py b/autotrader/__init__.py index 98296f33..5b26a08e 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.0" +__version__ = "1.0.1" diff --git a/pyproject.toml b/pyproject.toml index f3a0429a..a1d627b7 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.0" +version = "1.0.1" tag_format = "v$version" version_files = [ "autotrader/__init__.py:__version__",