We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6d3640 + 0a4ede6 commit 448daa2Copy full SHA for 448daa2
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Changelog
2
3
+### 1.1.1 (2019-06-12)
4
+- Release 1.1.1 that fixes multithreading issue with boto3 client
5
+
6
### (2019-06-12)
7
- Fixed boto3 multithreading use
8
Dockerfile
@@ -1,7 +1,7 @@
FROM alpine:3.9
RUN apk add --update --no-cache python3~=3.6 && \
- python3 -m pip install prometheus-aws-guardduty-exporter==1.0.0 --no-cache-dir
+ python3 -m pip install prometheus-aws-guardduty-exporter==1.1.1 --no-cache-dir
# Run as non-root
RUN adduser app -S -u 1000
setup.py
@@ -2,7 +2,7 @@
from setuptools import setup
# Version
-version = "1.1.0"
+version = "1.1.1"
# Requires Python 3
if sys.version_info.major < 3:
0 commit comments