diff --git a/CHANGELOG.md b/CHANGELOG.md index 01f83cd..dc076d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ # Changelog +### 1.1.1 (2019-04-04) +- [BUGFIX] Do not fail the reconciling if there are no instances registered to the service - PR [#8](https://github.com/spreaker/aws-cloud-unmap/pull/8) +- Documented required IAM privileges - PR [#7](https://github.com/spreaker/aws-cloud-unmap/pull/7) + ### 1.1.0 (2019-04-02) -- Introduced a built-in Prometheus exporter +- Introduced a built-in Prometheus exporter - PR [#6](https://github.com/spreaker/aws-cloud-unmap/pull/6) ### 1.0.4 (2019-03-29) -- [BUGFIX] Fixed memory leak +- [BUGFIX] Fixed memory leak - PR [#5](https://github.com/spreaker/aws-cloud-unmap/pull/5) ### 1.0.3 (2019-03-29) - First release diff --git a/Dockerfile b/Dockerfile index f936490..13a07f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.9 RUN apk add --update --no-cache python3~=3.6 && \ - python3 -m pip install aws-cloud-unmap==1.1.0 --no-cache-dir + python3 -m pip install aws-cloud-unmap==1.1.1 --no-cache-dir # Run as non-root RUN adduser app -S -u 1000 diff --git a/setup.py b/setup.py index 4f94573..467be0a 100644 --- a/setup.py +++ b/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: