From e52729501443f64268b3950adb83782817d90ab5 Mon Sep 17 00:00:00 2001 From: Andy Geach Date: Tue, 19 Oct 2021 11:01:12 +0100 Subject: [PATCH] version bump for release 0.0.15 --- CHANGES.md | 4 ++++ pyproject.toml | 2 +- trading_ig/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 232ab0f..90b3ea9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release notes +## 0.0.15 (2021-10-19) +* optional dependency `tenacity` updated to latest +* documentation improvements +* ## 0.0.14 (2021-10-04) * fixes the bug where guaranteed stop loss was replaced with a normal stop loss on working order update (#224) * legacy 'setup.py' style project config files removed diff --git a/pyproject.toml b/pyproject.toml index aee6757..5662b3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "trading_ig" -version = "0.0.14" +version = "0.0.15" description = "A lightweight Python wrapper for the IG Markets API" authors = ["Femto Trader "] maintainers = ["Andy Geach "] diff --git a/trading_ig/version.py b/trading_ig/version.py index 69d1974..f80f719 100644 --- a/trading_ig/version.py +++ b/trading_ig/version.py @@ -3,7 +3,7 @@ __copyright__ = "Copyright 2015-2021" __credits__ = [""] __license__ = "BSD" -__version__ = "0.0.14" +__version__ = "0.0.15" __maintainer__ = "Andy Geach" __status__ = "Development" __url__ = "https://github.com/ig-python/ig-markets-api-python-library"