From f0f07c7c2bccbd027454e63d50ff080b9831083b Mon Sep 17 00:00:00 2001 From: Matteo Pompili Date: Wed, 7 Sep 2022 16:22:07 -0500 Subject: [PATCH] Fix setup.py entry point bug --- .bumpversion.cfg | 2 +- CHANGELOG.md | 8 +++++++- caniusethat/__init__.py | 2 +- setup.py | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c867413..a97c741 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))?(\.(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 45aa654..3daa333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,13 @@ ## [Unreleased](https://github.com/matpompili/caniusethat/tree/main) -[Full Unreleased Changelog](https://github.com/matpompili/caniusethat/compare/v0.3.1...main) +[Full Unreleased Changelog](https://github.com/matpompili/caniusethat/compare/v0.3.2...main) + +## [v0.3.2](https://github.com/matpompili/caniusethat/tree/v0.3.2) (2022-09-07) + +- Fixed bug for setup.py entry point. + +[Full v0.3.2 Changelog](https://github.com/matpompili/caniusethat/compare/v0.3.1...v0.3.2) ## [v0.3.1](https://github.com/matpompili/caniusethat/tree/v0.3.1) (2022-09-07) diff --git a/caniusethat/__init__.py b/caniusethat/__init__.py index 260c070..f9aa3e1 100644 --- a/caniusethat/__init__.py +++ b/caniusethat/__init__.py @@ -1 +1 @@ -__version__ = "0.3.1" +__version__ = "0.3.2" diff --git a/setup.py b/setup.py index 5c8319f..374112e 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name="caniusethat", - version="0.3.1", + version="0.3.2", packages=["caniusethat"], author="Matteo Pompili", python_requires=">=3.8", @@ -41,7 +41,7 @@ project_urls=project_urls, entry_points={ "console_scripts": [ - "caniusethat-cli = cli:run_cli", + "caniusethat-cli = caniusethat.cli:run_cli", ] }, )