diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fbebd51 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +build/ +dist/ +env/ +*.egg-info +*.pyc +.* diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 425699c..11a3e27 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -:tag:`Next release <0.0.1...main>` ----------------------------------- +:tag:`0.1.0 <0.0.1...0.1.0>` (10-May-2021) +------------------------------------------ - Added :envvar:`STATSD_ENABLED` environment variable to disable the Tornado integration - Tornado application mixin automatically installs start/stop hooks if the application quacks like a ``sprockets.http.app.Application``. diff --git a/setup.cfg b/setup.cfg index ec84465..11b8123 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,7 +13,7 @@ project_urls: author = Dave Shawley author_email = daveshawley@gmail.com classifiers = - Development Status :: 3 - Alpha + Development Status :: 4 - Beta Intended Audience :: Developers License :: OSI Approved :: BSD License Natural Language :: English @@ -22,6 +22,7 @@ classifiers = Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Topic :: Communications Topic :: Internet Topic :: Software Development diff --git a/sprockets_statsd/__init__.py b/sprockets_statsd/__init__.py index e569d99..3f1f164 100644 --- a/sprockets_statsd/__init__.py +++ b/sprockets_statsd/__init__.py @@ -1,2 +1,2 @@ -version_info = (0, 0, 1) +version_info = (0, 1, 0) version = '.'.join(str(c) for c in version_info)