Skip to content

Commit 855c790

Browse files
committed
Version update. Update Changelog.
1 parent 7404386 commit 855c790

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 0.0.5
2+
-------------
3+
4+
* [FEATURE] Added `UWSGIFlushStorage`
5+
* [FEATURE] Added `UWSGIStorage` metrics
6+
17
Version 0.0.4
28
-------------
39

pyprometheus/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
"""
1313

1414

15-
__all__ = ('__version__', '__version_info__', '__maintainer__',
16-
'Counter', 'Gauge', 'Summary', 'Histogram', 'BaseStorage',
17-
'LocalMemoryStorage')
15+
__all__ = ("__version__", "__version_info__", "__maintainer__",
16+
"Counter", "Gauge", "Summary", "Histogram", "BaseStorage",
17+
"LocalMemoryStorage")
1818

1919
__license__ = "BSD, see LICENSE for more details"
2020

21-
__version__ = '0.0.4'
21+
__version__ = "0.0.5"
2222

23-
__version_info__ = list(map(int, __version__.split('.')))
23+
__version_info__ = list(map(int, __version__.split(".")))
2424

2525
__maintainer__ = "Alexandr Lispython"
2626

27-
from pyprometheus.metrics import Counter, Gauge, Summary, Histogram
28-
from pyprometheus.storage import BaseStorage, LocalMemoryStorage
27+
from pyprometheus.metrics import Counter, Gauge, Summary, Histogram # noqa
28+
from pyprometheus.storage import BaseStorage, LocalMemoryStorage # noqa

0 commit comments

Comments
 (0)