Skip to content

Commit

Permalink
[RELEASE]-1.7.5 (#2986)
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-hall-skylight authored Dec 4, 2024
1 parent c69e278 commit efd1720
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/buildReleaseContainers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v3
if: ${{ !contains(fromJSON('["ecr-viewer"]'), matrix.container-to-build) }}
with:
context: ./containers/${{matrix.container-to-build}}
push: true
Expand Down
2 changes: 1 addition & 1 deletion containers/ingestion/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion containers/message-parser/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion containers/message-refiner/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion containers/orchestration/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion containers/record-linkage/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion containers/trigger-code-reference/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion containers/validation/app/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion phdi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.7.4"
__version__ = "1.7.5"
2 changes: 1 addition & 1 deletion phdi/containers/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(
self.include_health_check_endpoint = include_health_check_endpoint
self.app = FastAPI(
title=service_name,
version="1.7.4",
version="1.7.5",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "phdi"
version = "v1.7.4"
version = "v1.7.5"
description = "Public health data infrastructure Building Blocks is a library to help public health departments work with their data"
authors = [
"Kenneth Chow <kenneth@skylight.digital>",
Expand Down

0 comments on commit efd1720

Please sign in to comment.