Skip to content

Commit

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

* Prepare for versioned release

* Prepare for versioned release
  • Loading branch information
docktermj authored Apr 3, 2023
1 parent d62ae71 commit 5797508
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [1.8.5] - 2023-04-03

### Changed in 1.8.5

- In `Dockerfile`, updated FROM instruction to `BASE_IMAGE=debian:11.6-slim@sha256:7acda01e55b086181a6fa596941503648e423091ca563258e2c1657d140355b1`
- In `requirements.txt`, updated:
- azure-servicebus==7.8.3
- boto3==1.26.104
- confluent-kafka==2.0.2
- fastavro==1.7.3
- fastparquet==2023.2.0
- pandas==2.0.0
- pyarrow==11.0.0
- websockets==11.0

## [1.8.4] - 2023-01-12

### Changed in 1.8.4
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG BASE_IMAGE=debian:11.6-slim@sha256:98d3b4b0cee264301eb1354e0b549323af2d0633e1c43375d0b25c01826b6790
ARG BASE_IMAGE=debian:11.6-slim@sha256:7acda01e55b086181a6fa596941503648e423091ca563258e2c1657d140355b1
FROM ${BASE_IMAGE}

ENV REFRESHED_AT=2023-01-12
ENV REFRESHED_AT=2023-04-03

LABEL Name="senzing/stream-producer" \
Maintainer="[email protected]" \
Version="1.8.4"
Version="1.8.5"

HEALTHCHECK CMD ["/app/healthcheck.sh"]

Expand Down
4 changes: 2 additions & 2 deletions stream-producer.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
# Metadata.

__all__ = []
__version__ = "1.8.4" # See https://www.python.org/dev/peps/pep-0396/
__version__ = "1.8.5" # See https://www.python.org/dev/peps/pep-0396/
__date__ = '2020-07-07'
__updated__ = '2023-01-12'
__updated__ = '2023-04-03'

# See https://github.com/Senzing/knowledge-base/blob/main/lists/senzing-product-ids.md
SENZING_PRODUCT_ID = "5014"
Expand Down

0 comments on commit 5797508

Please sign in to comment.