diff --git a/CHANGELOG.md b/CHANGELOG.md index 170bdf3..b4aea1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [v0.17.0](https://github.com/SebRut/pygrocy/tree/v0.17.0) (2020-08-14) + +[Full Changelog](https://github.com/SebRut/pygrocy/compare/v0.16.0...v0.17.0) + +**Closed issues:** + +- Misnaming in enum [\#112](https://github.com/SebRut/pygrocy/issues/112) + +**Merged pull requests:** + +- fix issue \#112 [\#113](https://github.com/SebRut/pygrocy/pull/113) ([SebRut](https://github.com/SebRut)) + +## [v0.16.0](https://github.com/SebRut/pygrocy/tree/v0.16.0) (2020-08-13) + +[Full Changelog](https://github.com/SebRut/pygrocy/compare/v0.15.0...v0.16.0) + +**Implemented enhancements:** + +- implement meal plan and recipes interface [\#90](https://github.com/SebRut/pygrocy/issues/90) + +**Merged pull requests:** + +- Bugfix/bug smashing [\#111](https://github.com/SebRut/pygrocy/pull/111) ([SebRut](https://github.com/SebRut)) +- Add meal plan / recipe interfaces. \#90 [\#109](https://github.com/SebRut/pygrocy/pull/109) ([nervetattoo](https://github.com/nervetattoo)) +- Update pdoc3 requirement from ~=0.8.3 to ~=0.8.4 [\#105](https://github.com/SebRut/pygrocy/pull/105) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview)) +- Update coveralls requirement from ~=2.0.0 to ~=2.1.1 [\#104](https://github.com/SebRut/pygrocy/pull/104) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview)) +- Update pdoc3 requirement from ~=0.8.1 to ~=0.8.3 [\#102](https://github.com/SebRut/pygrocy/pull/102) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview)) +- Update responses requirement from ~=0.10.14 to ~=0.10.15 [\#101](https://github.com/SebRut/pygrocy/pull/101) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview)) + ## [v0.15.0](https://github.com/SebRut/pygrocy/tree/v0.15.0) (2020-05-25) [Full Changelog](https://github.com/SebRut/pygrocy/compare/v0.14.0...v0.15.0) diff --git a/setup.py b/setup.py index 2071c17..02af4ae 100644 --- a/setup.py +++ b/setup.py @@ -5,21 +5,16 @@ setuptools.setup( name="pygrocy", - version="0.16.0", + version="0.17.0", author="Sebastian Rutofski", author_email="kontakt@sebastian-rutofski.de", description="", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/sebrut/pygrocy", - license='MIT', + license="MIT", packages=setuptools.find_packages(), - install_requires=[ - "requests", - "iso8601", - "pytz", - "tzlocal" - ], + install_requires=["requests", "iso8601", "pytz", "tzlocal"], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",