Skip to content

Commit

Permalink
Fix setup.py entry point bug
Browse files Browse the repository at this point in the history
  • Loading branch information
matpompili committed Sep 7, 2022
1 parent 877d6fb commit f0f07c7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.3.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?(\.(?P<build>\d+))?
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion caniusethat/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1"
__version__ = "0.3.2"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="caniusethat",
version="0.3.1",
version="0.3.2",
packages=["caniusethat"],
author="Matteo Pompili",
python_requires=">=3.8",
Expand All @@ -41,7 +41,7 @@
project_urls=project_urls,
entry_points={
"console_scripts": [
"caniusethat-cli = cli:run_cli",
"caniusethat-cli = caniusethat.cli:run_cli",
]
},
)

0 comments on commit f0f07c7

Please sign in to comment.