diff options
-rw-r--r-- | debian/changelog | 10 | ||||
-rw-r--r-- | prometheus_pgbouncer_exporter/__init__.py | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 917a67a..1b2280a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +prometheus-pgbouncer-exporter (1.2) unstable; urgency=low + + * New release + - Add extra documentation + - Add extra licence information + - Add --version argument + - Rename metrics, removing _count prefix + + -- Christopher Baines <mail@cbaines.net> Sat, 16 Jan 2016 20:47:22 +0000 + prometheus-pgbouncer-exporter (1.1) unstable; urgency=low * New release diff --git a/prometheus_pgbouncer_exporter/__init__.py b/prometheus_pgbouncer_exporter/__init__.py index 4fe83a7..107ba30 100644 --- a/prometheus_pgbouncer_exporter/__init__.py +++ b/prometheus_pgbouncer_exporter/__init__.py @@ -1,3 +1,3 @@ __ver_major__ = 1 -__ver_minor__ = 1 +__ver_minor__ = 2 __version__ = "%d.%d" % (__ver_major__, __ver_minor__) |