From f10fe8ec98fe96c94486f2b40c5470bcc0e0290e Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Mon, 5 Aug 2024 09:25:57 -0700 Subject: [PATCH] Increment version --- pyproject.toml | 2 +- src/instawebhooks/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4a11b5b..acc98fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "instawebhooks" -version = "0.1.0" +version = "0.1.1" description = "Discord webhooks for new Instagram posts from any profile" readme = "README.md" requires-python = ">=3.8" diff --git a/src/instawebhooks/__main__.py b/src/instawebhooks/__main__.py index f2e102c..6a7cdee 100644 --- a/src/instawebhooks/__main__.py +++ b/src/instawebhooks/__main__.py @@ -90,7 +90,7 @@ def closure_check_regex(arg_value): help="don't show the post embed and only send message content", action="store_true", ) -parser.add_argument("--version", action="version", version="%(prog)s 0.1.0") +parser.add_argument("--version", action="version", version="%(prog)s 0.1.1") args = parser.parse_args() # Set the logger to debug if verbose is enabled