Skip to content

Commit 7aa9996

Browse files
author
Marco Pracucci
committed
Version 1.0.1
1 parent b9a79f8 commit 7aa9996

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 1.0.1 (2018-08-30)
4+
- [BUGFIX] Fixed `PGBOUNCER_EXPORTER_PORT` environment variable data type [#7](https://github.com/spreaker/prometheus-pgbouncer-exporter/pull/7)
5+
36
### 1.0.0 (2018-05-04)
47
- [FEATURE] Added `pgbouncer_databases_database_pool_size`, `pgbouncer_databases_database_reserve_pool_size` and `pgbouncer_databases_database_current_connections` metrics [#3](https://github.com/spreaker/prometheus-pgbouncer-exporter/pull/3)
58
- [BUGFIX] Fixed `PyYAML` dependency declaration [#4](https://github.com/spreaker/prometheus-pgbouncer-exporter/pull/4)

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,20 @@
44
if sys.version_info.major < 3:
55
raise RuntimeError('Installing requires Python 3 or newer')
66

7+
# Read the long description from README.md
8+
with open('README.md') as file:
9+
long_description = file.read()
10+
711
setup(
812
name = 'prometheus-pgbouncer-exporter',
913
packages = ['prometheus_pgbouncer_exporter'],
10-
version = '1.0.0',
14+
version = '1.0.1',
1115
description = 'Prometheus exporter for PgBouncer',
16+
long_description = long_description,
1217
author = 'Marco Pracucci',
1318
author_email = '[email protected]',
1419
url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter',
15-
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/1.0.0.tar.gz',
20+
download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/1.0.1.tar.gz',
1621
keywords = ['prometheus', 'pgbouncer'],
1722
classifiers = [],
1823
python_requires = ' >= 3',

0 commit comments

Comments
 (0)