diff --git a/CHANGES.md b/CHANGES.md index 1ac75e0..54676c5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,15 @@ # Release notes +## 0.0.23 (2026-01-23) +* Skip test where munch needed, if not imported (PR #360) +* Better support for recent pandas (PR #347) +* CI updates (PR #351) +* added feature to request repeat dealing window for traded epics (PR #350) +* Bump min Python version to 3.9 +* add readthedocs config +* add a sample jupyter notebook for REST api +* StreamingManager now supports a user defined timeout length to be set on method ticker() (PR #322) + ## 0.0.22 (2023-12-06) * add support for 'time_in_force' parameter (Issue #303, PR #303) * add ability to handle KYC errors (Issue #261, PR #307) diff --git a/docs/source/conf.py b/docs/source/conf.py index c5753bd..ac20f98 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -18,7 +18,7 @@ # -- Project information ----------------------------------------------------- project = "trading-ig" -copyright = "2015 - 2024, FemtoTrader, Andy Geach" +copyright = "2015 - 2026, FemtoTrader, Andy Geach" author = "FemtoTrader" diff --git a/pyproject.toml b/pyproject.toml index 2546d20..517ef25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "trading-ig" -version = "0.0.22" +version = "0.0.23" description = "A lightweight Python wrapper for the IG Markets API" authors = ["Femto Trader ", "Andy Geach "] maintainers = ["Andy Geach "] @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", "Topic :: Software Development :: Libraries", "License :: OSI Approved :: BSD License",