diff --git a/CHANGELOG.md b/CHANGELOG.md index 94d162b..78098dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### 1.0.1 (2018-08-30) +- [BUGFIX] Fixed `PGBOUNCER_EXPORTER_PORT` environment variable data type [#7](https://github.com/spreaker/prometheus-pgbouncer-exporter/pull/7) + ### 1.0.0 (2018-05-04) - [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) - [BUGFIX] Fixed `PyYAML` dependency declaration [#4](https://github.com/spreaker/prometheus-pgbouncer-exporter/pull/4) diff --git a/setup.py b/setup.py index a08d125..dd03ef5 100644 --- a/setup.py +++ b/setup.py @@ -4,15 +4,20 @@ if sys.version_info.major < 3: raise RuntimeError('Installing requires Python 3 or newer') +# Read the long description from README.md +with open('README.md') as file: + long_description = file.read() + setup( name = 'prometheus-pgbouncer-exporter', packages = ['prometheus_pgbouncer_exporter'], - version = '1.0.0', + version = '1.0.1', description = 'Prometheus exporter for PgBouncer', + long_description = long_description, author = 'Marco Pracucci', author_email = 'marco@pracucci.com', url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter', - download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/1.0.0.tar.gz', + download_url = 'https://github.com/spreaker/prometheus-pgbouncer-exporter/archive/1.0.1.tar.gz', keywords = ['prometheus', 'pgbouncer'], classifiers = [], python_requires = ' >= 3',