Skip to content

Commit

Permalink
Prepare for versioned release
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Nov 15, 2023
1 parent dd0625e commit 2e994e5
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/docker-build-container.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: docker-build-container.yaml

on:
pull_request:
branches:
- main
workflow_dispatch:
on: [push]

jobs:
docker-build-container:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
---

name: docker-push-containers-to-dockerhub-and-ecr.yaml

on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"

jobs:
docker-push-containers-to-dockerhub-and-ecr:
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
uses: Senzing/build-resources/.github/workflows/docker-push-containers-to-dockerhub-and-ecr.yaml@main
with:
build-options: "--push"
docker-image-repository: senzing/stream-loader
ecr-image-repository: senzing/stream-loader
image-tag: ${{ github.ref_name }}
platforms: "linux/amd64,linux/arm64"
secrets:
AWS_DOCKER_ACCOUNT_ID: ${{ secrets.AWS_DOCKER_ACCOUNT_ID }}
DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [2.2.10] - 2023-10-11

### Changed in 2.2.10

- In `Dockerfile`, updated FROM instruction to `senzing/senzingapi-runtime:3.8.0`
- In `requirements.txt`, updated:
- azure-servicebus==7.11.4
- boto3==1.29.0
- confluent-kafka==2.3.0
- orjson==3.9.10
- psutil==5.9.6
- psycopg2-binary==2.9.9

## [2.2.9] - 2023-09-30

### Changed in 2.2.9
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV REFRESHED_AT=2023-11-14

LABEL Name="senzing/stream-loader" \
Maintainer="support@senzing.com" \
Version="2.2.9"
Version="2.2.10"

# Run as "root" for system installation.

Expand Down Expand Up @@ -59,7 +59,7 @@ ENV REFRESHED_AT=2023-11-14

LABEL Name="senzing/stream-loader" \
Maintainer="support@senzing.com" \
Version="2.2.9"
Version="2.2.10"

# 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.9" # See https://www.python.org/dev/peps/pep-0396/
__version__ = "2.2.10" # See https://www.python.org/dev/peps/pep-0396/
__date__ = '2018-10-29'
__updated__ = '2023-09-30'
__updated__ = '2023-11-15'

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 2e994e5

Please sign in to comment.