diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d201a4..ac48bd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - +## [2.2.8] - 2023-06-29 + +### Changed in 2.2.8 + +- In `Dockerfile`, updated FROM instruction to `senzing/senzingapi-runtime:3.6.0` +- In `requirements.txt`, updated: + - boto3==1.26.163 + ## [2.2.7] - 2023-06-15 ### Changed in 2.2.7 diff --git a/Dockerfile b/Dockerfile index 9b04c69..e1a49a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=senzing/senzingapi-runtime:3.5.3 +ARG BASE_IMAGE=senzing/senzingapi-runtime:3.6.0 # ----------------------------------------------------------------------------- # Stage: builder @@ -6,11 +6,11 @@ ARG BASE_IMAGE=senzing/senzingapi-runtime:3.5.3 FROM ${BASE_IMAGE} AS builder -ENV REFRESHED_AT=2023-06-15 +ENV REFRESHED_AT=2023-06-29 LABEL Name="senzing/stream-loader" \ Maintainer="support@senzing.com" \ - Version="2.2.7" + Version="2.2.8" # Run as "root" for system installation. @@ -55,11 +55,11 @@ RUN curl -X GET \ FROM ${BASE_IMAGE} AS runner -ENV REFRESHED_AT=2023-06-15 +ENV REFRESHED_AT=2023-06-29 LABEL Name="senzing/stream-loader" \ Maintainer="support@senzing.com" \ - Version="2.2.7" + Version="2.2.8" # Define health check. diff --git a/stream-loader.py b/stream-loader.py index e80ec85..ded1660 100755 --- a/stream-loader.py +++ b/stream-loader.py @@ -68,9 +68,9 @@ # Metadata __all__ = [] -__version__ = "2.2.7" # See https://www.python.org/dev/peps/pep-0396/ +__version__ = "2.2.8" # See https://www.python.org/dev/peps/pep-0396/ __date__ = '2018-10-29' -__updated__ = '2023-06-15' +__updated__ = '2023-06-29' SENZING_PRODUCT_ID = "5001" # See https://github.com/Senzing/knowledge-base/blob/main/lists/senzing-product-ids.md log_format = '%(asctime)s %(message)s'