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.7) + + * Include the port setting in the example configuration file + * Add note in the README about authentication + + -- Christopher Baines <mail@cbaines.net> Tue, 01 Mar 2016 08:45:45 +0000 + prometheus-pgbouncer-exporter (1.6) * Make the pgbouncer host configurable diff --git a/prometheus_pgbouncer_exporter/__init__.py b/prometheus_pgbouncer_exporter/__init__.py index 1ab0f46..45b81bf 100644 --- a/prometheus_pgbouncer_exporter/__init__.py +++ b/prometheus_pgbouncer_exporter/__init__.py @@ -1,3 +1,3 @@ __ver_major__ = 1 -__ver_minor__ = 6 +__ver_minor__ = 7 __version__ = "%d.%d" % (__ver_major__, __ver_minor__) |