From c5baa3a89ca3cea5b4b52e86f7a7b3f113d32232 Mon Sep 17 00:00:00 2001 From: Ken Moriarty Date: Tue, 20 May 2025 10:03:23 -0600 Subject: [PATCH 1/2] Release 1.2.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 62ff05a..b80c673 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tastytrade-sdk" -version = "1.1.2a0" +version = "1.2.0" description = "A python wrapper around the tastytrade open API" authors = [ "Aaron Mamparo " From 995e549e7d59c6f1c56b097cceed8beb99b3fcc6 Mon Sep 17 00:00:00 2001 From: Ken Moriarty Date: Tue, 20 May 2025 10:03:27 -0600 Subject: [PATCH 2/2] Bumping to next pre-patch version 1.2.1a0 --- pyproject.toml | 2 +- release.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b80c673..3dbc1e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tastytrade-sdk" -version = "1.2.0" +version = "1.2.1a0" description = "A python wrapper around the tastytrade open API" authors = [ "Aaron Mamparo " diff --git a/release.sh b/release.sh index 12a5705..807e59b 100755 --- a/release.sh +++ b/release.sh @@ -33,8 +33,8 @@ git add pyproject.toml git commit -m "Release ${NEW_VERSION}" git tag -f ${NEW_VERSION} git tag -f latest -git push origin -f ${NEW_VERSION} -git push origin -f latest +git push --set-upstream origin -f ${NEW_VERSION} +git push --set-upstream origin -f latest export NEW_PREPATCH_VERSION="$(poetry version prepatch --short)" git add pyproject.toml