From f56fae127f8873a89486bb2a3c858218799e4390 Mon Sep 17 00:00:00 2001 From: Graeme Holliday Date: Tue, 3 Dec 2024 21:57:10 -0500 Subject: [PATCH] bump version --- pyproject.toml | 2 +- ttcli/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bf948b0..9401a30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "tastytrade-cli" -version = "0.3" +version = "0.4" description = "An easy-to-use command line interface for Tastytrade!" readme = "README.md" requires-python = ">=3.10" diff --git a/ttcli/utils.py b/ttcli/utils.py index f5f890c..fa72558 100644 --- a/ttcli/utils.py +++ b/ttcli/utils.py @@ -14,7 +14,7 @@ from tastytrade.streamer import U logger = logging.getLogger(__name__) -VERSION = "0.3" +VERSION = "0.4" ZERO = Decimal(0) CONTEXT_SETTINGS = {"help_option_names": ["-h", "--help"]}