Skip to content

Commit

Permalink
github-util: Update FROM version (#632)
Browse files Browse the repository at this point in the history
* #1 Update version

* Prepare for versioned release
  • Loading branch information
docktermj authored Jun 29, 2023
1 parent 8845984 commit 1c04263
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.5.3
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.6.0

# -----------------------------------------------------------------------------
# Stage: builder
# -----------------------------------------------------------------------------

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.

Expand Down Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions stream-loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 1c04263

Please sign in to comment.