mirror of
https://github.com/sprockets/sprockets-statsd.git
synced 2024-11-24 03:00:18 +00:00
0.1.0: Ready for beta.
This commit is contained in:
parent
0fbff9e19c
commit
3291306305
4 changed files with 11 additions and 4 deletions
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
env/
|
||||||
|
*.egg-info
|
||||||
|
*.pyc
|
||||||
|
.*
|
|
@ -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
|
- Added :envvar:`STATSD_ENABLED` environment variable to disable the Tornado integration
|
||||||
- Tornado application mixin automatically installs start/stop hooks if the application
|
- Tornado application mixin automatically installs start/stop hooks if the application
|
||||||
quacks like a ``sprockets.http.app.Application``.
|
quacks like a ``sprockets.http.app.Application``.
|
||||||
|
|
|
@ -13,7 +13,7 @@ project_urls:
|
||||||
author = Dave Shawley
|
author = Dave Shawley
|
||||||
author_email = daveshawley@gmail.com
|
author_email = daveshawley@gmail.com
|
||||||
classifiers =
|
classifiers =
|
||||||
Development Status :: 3 - Alpha
|
Development Status :: 4 - Beta
|
||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
License :: OSI Approved :: BSD License
|
License :: OSI Approved :: BSD License
|
||||||
Natural Language :: English
|
Natural Language :: English
|
||||||
|
@ -22,6 +22,7 @@ classifiers =
|
||||||
Programming Language :: Python :: 3 :: Only
|
Programming Language :: Python :: 3 :: Only
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
|
Programming Language :: Python :: 3.10
|
||||||
Topic :: Communications
|
Topic :: Communications
|
||||||
Topic :: Internet
|
Topic :: Internet
|
||||||
Topic :: Software Development
|
Topic :: Software Development
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version_info = (0, 0, 1)
|
version_info = (0, 1, 0)
|
||||||
version = '.'.join(str(c) for c in version_info)
|
version = '.'.join(str(c) for c in version_info)
|
||||||
|
|
Loading…
Reference in a new issue