diff --git a/CHANGELOG.md b/CHANGELOG.md index d6bdb99..7c26743 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.1] +### Fixed +- Colorama dependency was missing. + ## [1.0.0] ### Fixed - Dependencies will now be automatically installed. @@ -12,5 +16,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Progressbar - Success message +[1.0.1]: https://github.com/w-kuipers/python-project-minify/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/w-kuipers/python-project-minify/compare/v0.0.2...v1.0.0 [0.0.2]: https://github.com/w-kuipers/python-project-minify/releases/tag/v0.0.2 \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index ef81c5e..c366ae7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ python-minifier -tqdm \ No newline at end of file +tqdm +colorama \ No newline at end of file diff --git a/setup.py b/setup.py index 2708173..58af336 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="python-project-minify", - version="1.0.0", + version="1.0.1", author="Wibo Kuipers", author_email="w.kuipers@filmage.nl", description="A quick way to compile your Python project into it's most compact form. Built on the great python-minify package.", @@ -26,5 +26,5 @@ package_dir={"": "src"}, packages=setuptools.find_packages(where="src"), python_requires=">=3.6", - install_requires=['python-minifier', 'tqdm'], + install_requires=['python-minifier==2.9.0', 'tqdm==4.66.1', 'colorama==0.4.6'], ) \ No newline at end of file diff --git a/src/python_project_minify/__main__.py b/src/python_project_minify/__main__.py index e4b03c6..c40e419 100644 --- a/src/python_project_minify/__main__.py +++ b/src/python_project_minify/__main__.py @@ -6,7 +6,7 @@ try: __version__ = get_distribution('python_project_minify').version except DistributionNotFound: - __version__ = '1.0.0' + __version__ = '1.0.1' def main():