diff options
-rw-r--r-- | CHANGELOG | 7 | ||||
-rw-r--r-- | prometheus_pgbouncer_exporter/__init__.py | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +prometheus-pgbouncer-exporter (1.6) + + * Make the pgbouncer host configurable + * Fix help strings + + -- Christopher Baines <mail@cbaines.net> Sat, 27 Feb 2016 17:55:20 +0000 + prometheus-pgbouncer-exporter (1.5) * Make the port and host configurable diff --git a/prometheus_pgbouncer_exporter/__init__.py b/prometheus_pgbouncer_exporter/__init__.py index 707cd28..1ab0f46 100644 --- a/prometheus_pgbouncer_exporter/__init__.py +++ b/prometheus_pgbouncer_exporter/__init__.py @@ -1,3 +1,3 @@ __ver_major__ = 1 -__ver_minor__ = 4 +__ver_minor__ = 6 __version__ = "%d.%d" % (__ver_major__, __ver_minor__) |