Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -- Project information -----------------------------------------------------

project = "trading-ig"
copyright = "2015 - 2024, FemtoTrader, Andy Geach"
copyright = "2015 - 2026, FemtoTrader, Andy Geach"
author = "FemtoTrader"


Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <femto.trader@gmail.com>", "Andy Geach <andy@bugorfeature.net>"]
maintainers = ["Andy Geach <andy@bugorfeature.net>"]
Expand All @@ -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",
Expand Down
Loading