Skip to content

Commit deaac64

Browse files
committed
v1.8.0
1 parent 9d2b436 commit deaac64

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
22
=========
33

4+
v1.8.0 (2025-03-24)
5+
-------------------
6+
47
* Added support for containers
58

69
v1.7.3 (2025-03-07)

datacrunch/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.7.3'
1+
VERSION = '1.8.0'

datacrunch/containers/containers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class HealthcheckSettings:
4949
:param port: Port number to perform health check on
5050
:param path: HTTP path to perform health check on
5151
"""
52-
enabled: bool
52+
enabled: bool = True
5353
port: Optional[int] = None
5454
path: Optional[str] = None
5555

@@ -63,7 +63,7 @@ class EntrypointOverridesSettings:
6363
:param entrypoint: List of strings forming the entrypoint command
6464
:param cmd: List of strings forming the command arguments
6565
"""
66-
enabled: bool
66+
enabled: bool = True
6767
entrypoint: Optional[List[str]] = None
6868
cmd: Optional[List[str]] = None
6969

0 commit comments

Comments
 (0)