From f3c2c14244d1b86d23f7e8c459912eb3d8021d34 Mon Sep 17 00:00:00 2001 From: Graeme Holliday Date: Tue, 1 Oct 2024 17:29:57 -0500 Subject: [PATCH] bump version --- pyproject.toml | 2 +- tastytrade/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c0a81d0..0924109 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "tastytrade" -version = "8.4.1" +version = "8.5" description = "An unofficial SDK for Tastytrade!" readme = "README.md" requires-python = ">=3.8" diff --git a/tastytrade/__init__.py b/tastytrade/__init__.py index 14c4db4..b1bb6b5 100644 --- a/tastytrade/__init__.py +++ b/tastytrade/__init__.py @@ -3,7 +3,7 @@ API_URL = "https://api.tastyworks.com" BACKTEST_URL = "https://backtester.vast.tastyworks.com" CERT_URL = "https://api.cert.tastyworks.com" -VERSION = "8.4.1" +VERSION = "8.5" logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG)