From 66a363bedc2ee02e43c5f1adb23efbdcd748fd1d Mon Sep 17 00:00:00 2001 From: Chris Singley Date: Sun, 3 Sep 2023 06:33:45 -0500 Subject: [PATCH] Bump version for release 0.16 --- ibflex/__version__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ibflex/__version__.py b/ibflex/__version__.py index a1b1a16..5cf7d39 100644 --- a/ibflex/__version__.py +++ b/ibflex/__version__.py @@ -17,7 +17,7 @@ "Parse Interactive Brokers Flex XML reports and convert to Python types" ), __url__ = "https://github.com/csingley/ibflex" -__version__ = "0.15" +__version__ = "0.16" __author__ = "Christopher Singley" __author_email__ = "csingley@gmail.com" __license__ = "MIT" diff --git a/setup.py b/setup.py index bd7c10d..b169f63 100644 --- a/setup.py +++ b/setup.py @@ -43,8 +43,8 @@ python_requires=">=3.7", license=ABOUT["__license__"], # Note: change 'master' to the tag name when releasing a new verion - download_url="{}/master".format(URL_BASE), - # download_url="{}/{}".format(URL_BASE, ABOUT["__version__"]), + # download_url="{}/master".format(URL_BASE), + download_url="{}/{}".format(URL_BASE, ABOUT["__version__"]), classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers",