From 699c4f6a1ccad2f880573f05461454fbe32d6534 Mon Sep 17 00:00:00 2001 From: Graeme Holliday Date: Mon, 6 Jan 2025 17:35:29 -0500 Subject: [PATCH] bump version --- docs/conf.py | 2 +- pyproject.toml | 2 +- tastytrade/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index fa00cf8..4b71af0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = "tastytrade" copyright = "2024, Graeme Holliday" author = "Graeme Holliday" -release = "9.5" +release = "9.6" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index a529a4e..c618bdb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "tastytrade" -version = "9.5" +version = "9.6" description = "An unofficial, sync/async SDK for Tastytrade!" readme = "README.md" requires-python = ">=3.9" diff --git a/tastytrade/__init__.py b/tastytrade/__init__.py index b4ae6ab..8485a66 100644 --- a/tastytrade/__init__.py +++ b/tastytrade/__init__.py @@ -4,7 +4,7 @@ BACKTEST_URL = "https://backtester.vast.tastyworks.com" CERT_URL = "https://api.cert.tastyworks.com" VAST_URL = "https://vast.tastyworks.com" -VERSION = "9.5" +VERSION = "9.6" logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG)