From 1692d4c92e25673f8ba1067ebcfde418dfbc7feb Mon Sep 17 00:00:00 2001 From: Ryan Luu Date: Wed, 24 Jul 2024 01:06:32 +0000 Subject: [PATCH] Increment version --- pyproject.toml | 2 +- src/instawebhooks/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ae22d03..dc7c982 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "instawebhooks" -version = "0.0.2" +version = "0.1.0" description = "Discord webhooks for new Instagram posts from any profile" readme = "README.md" requires-python = ">=3.8" diff --git a/src/instawebhooks/__init__.py b/src/instawebhooks/__init__.py index 62604cf..fa8d7a9 100644 --- a/src/instawebhooks/__init__.py +++ b/src/instawebhooks/__init__.py @@ -66,7 +66,7 @@ def closure_check_regex(arg_value): type=int, default=3600, ) -parser.add_argument("--version", action="version", version="%(prog)s 0.0.1") +parser.add_argument("--version", action="version", version="%(prog)s 0.1.0") args = parser.parse_args() # Set the logger to debug if verbose is enabled