Skip to content

Commit

Permalink
[RELEASE]-1.7.6 (#3035)
Browse files Browse the repository at this point in the history
* [RELEASE]-1.7.6

* Update pdoc to 15 to fix error in release pipelien

---------

Co-authored-by: Mary McGrath <m.c.mcgrath13@gmail.com>
  • Loading branch information
BobanL and mcmcgrath13 authored Dec 11, 2024
1 parent d78d9b7 commit 2bd0e03
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 21 deletions.
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.5",
version="1.7.6",
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.5",
version="1.7.6",
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.5",
version="1.7.6",
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.5",
version="1.7.6",
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.5",
version="1.7.6",
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.5",
version="1.7.6",
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.5",
version="1.7.6",
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.5"
__version__ = "1.7.6"
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.5",
version="1.7.6",
contact=DIBBS_CONTACT,
license_info=LICENSES[license_info],
description=description,
Expand Down
17 changes: 7 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "phdi"
version = "v1.7.5"
version = "v1.7.6"
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 Expand Up @@ -56,7 +56,7 @@ faker = "^18.4.0"
pillow = "^10.3.0"

[tool.poetry.dev-dependencies]
pdoc = "^14.5.1"
pdoc = "^15.0.0"
pytest = "^7.1.0"
pytest-cov = "^3.0.0"
toml = "^0.10.2"
Expand Down

0 comments on commit 2bd0e03

Please sign in to comment.