From 61a119327f786aa3e6af56532f406c8b183ab73a Mon Sep 17 00:00:00 2001 From: Ken Moriarty Date: Thu, 16 Oct 2025 12:01:39 -0600 Subject: [PATCH 1/3] Release 1.3.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f4082dd..0deb726 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tastytrade-sdk" -version = "1.2.1a0" +version = "1.3.0" description = "A python wrapper around the tastytrade open API" authors = [ "Aaron Mamparo " From 7c497ee380bae202e020e11456b2a92e079c1123 Mon Sep 17 00:00:00 2001 From: Ken Moriarty Date: Thu, 16 Oct 2025 12:01:42 -0600 Subject: [PATCH 2/3] Bumping to next pre-patch version 1.3.1a0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0deb726..d225837 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tastytrade-sdk" -version = "1.3.0" +version = "1.3.1a0" description = "A python wrapper around the tastytrade open API" authors = [ "Aaron Mamparo " From 29de2150068af727fca530734f5b350eeb97d2a3 Mon Sep 17 00:00:00 2001 From: Ken Moriarty Date: Thu, 16 Oct 2025 12:06:57 -0600 Subject: [PATCH 3/3] Update releaser env --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3afb0f5..181942d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,6 +32,9 @@ jobs: API_BASE_URL: ${{ vars.TASTYTRADE_CERT_URL }} TASTYTRADE_LOGIN: ${{ secrets.TASTYTRADE_CERT_LOGIN }} TASTYTRADE_PASSWORD: ${{ secrets.TASTYTRADE_CERT_PASSWORD }} + TT_CLIENT_ID: ${{ secrets.TT_CLIENT_ID }} + TT_CLIENT_SECRET: ${{ secrets.TT_CLIENT_SECRET }} + TT_REFRESH_TOKEN: ${{ secrets.TT_REFRESH_TOKEN }} - name: Build with Poetry run: poetry build - name: Publish distribution 📦 to PyPI