diff --git a/CHANGELOG.md b/CHANGELOG.md index ce1992b..6c5e629 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Changelog + +0.10.1 (2021-12-13) +------------------ + +* Fix another brownbag release by re-applying fixes from 0.9.1. + [zupo] + + 0.10.0 (2021-12-13) ------------------ @@ -7,6 +15,13 @@ [zupo] +0.9.1 (2021-09-24) +------------------ + +* Fix brownbag release by fixing definition of extras. + [zupo] + + 0.9.0 (2021-09-24) ------------------ diff --git a/setup.py b/setup.py index d6bc9f2..9159022 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ long_description += "\n\n" + f.read() -VERSION = "0.10.0" +VERSION = "0.10.1" class VerifyVersionCommand(install): @@ -68,7 +68,7 @@ def run(self): # noqa: D102 packages=find_packages(exclude=["tests"]), include_package_data=True, install_requires=["pyramid", "requests", "mixpanel", "customerio"], - extra_requires={ + extras_require={ "customerio": ["customerio"], }, cmdclass={"verify": VerifyVersionCommand},