diff --git a/CHANGES.md b/CHANGES.md index b6c21ba..ea5f6d6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # Release notes +## 0.0.11 +* code samples improved, new FAQ +* Adds support for update open position v2 +* new function to calculate mid prices for historic data +* Adds support for getting and updating account prefs +* Adds support for `/markets` endpoint for getting details of multiple markets +* new sample script to traverse navigation tree and get epics, new FAQ + ## 0.0.10 * simplified request headers: `requests.Session` now handles persistence diff --git a/pyproject.toml b/pyproject.toml index 85677ac..f95e65e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "trading_ig" -version = "0.0.10" +version = "0.0.11" description = "A lightweight wrapper for the IG Markets API written in Python" authors = ["Femto Trader "] maintainers = ["Andy Geach "] diff --git a/trading_ig/version.py b/trading_ig/version.py index 27daa14..6edf9a8 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.10" +__version__ = "0.0.11" __maintainer__ = "Andy Geach" __status__ = "Development" __url__ = "https://github.com/ig-python/ig-markets-api-python-library"