From 13a52c40f2972866d9a8e37ed54fa7b44f95dcc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esteban=20S=C3=A1nchez?= Date: Tue, 29 Sep 2020 13:47:32 +0200 Subject: [PATCH] New version --- Dockerfile | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3b4ddb..94c1057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk add --update --no-cache \ python3 # Install package -RUN pip3 install prometheus-qbittorrent-exporter==1.0.1 +RUN pip3 install prometheus-qbittorrent-exporter==1.0.2 ENV QBITTORRENT_HOST="" ENV QBITTORRENT_PORT="" diff --git a/setup.py b/setup.py index fefffce..e7ee22a 100644 --- a/setup.py +++ b/setup.py @@ -6,14 +6,14 @@ with open("README.md", "r") as fh: setup( name='prometheus-qbittorrent-exporter', packages=['qbittorrent_exporter'], - version='1.0.1', + version='1.0.2', long_description=long_description, long_description_content_type="text/markdown", description='Prometheus exporter for qbittorrent', author='Esteban Sanchez', author_email='esteban.sanchez@gmail.com', url='https://github.com/esanchezm/prometheus-qbittorrent-exporter', - download_url='https://github.com/esanchezm/prometheus-qbittorrent-exporter/archive/1.0.1.tar.gz', + download_url='https://github.com/esanchezm/prometheus-qbittorrent-exporter/archive/1.0.2.tar.gz', keywords=['prometheus', 'qbittorrent'], classifiers=[], python_requires='>=3',