Skip to content

Commit 4e0883e

Browse files
authored
Set version as 1.4.0 and mark log forwarding as experimental (#418)
1 parent d6646a2 commit 4e0883e

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "temporalio"
3-
version = "1.3.0"
3+
version = "1.4.0"
44
description = "Temporal.io Python SDK"
55
license = "MIT"
66
authors = ["Temporal Technologies Inc <[email protected]>"]

temporalio/runtime.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,11 @@ class LoggingConfig:
118118

119119
forwarding: Optional[LogForwardingConfig] = None
120120
"""If present, Core logger messages will be forwarded to a Python logger.
121-
See the :py:class:`LogForwardingConfig` docs for more info."""
121+
See the :py:class:`LogForwardingConfig` docs for more info.
122+
123+
.. warning::
124+
This API is experimental
125+
"""
122126

123127
default: ClassVar[LoggingConfig]
124128
"""Default logging configuration of Core WARN level and other ERROR
@@ -160,6 +164,9 @@ class LogForwardingConfig:
160164
attribute which has arbitrary extra data from Core. By default a string
161165
representation of this extra ``fields`` attribute is appended to the
162166
message.
167+
168+
.. warning::
169+
This API is experimental
163170
"""
164171

165172
logger: logging.Logger

temporalio/service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import temporalio.exceptions
2626
import temporalio.runtime
2727

28-
__version__ = "1.3.0"
28+
__version__ = "1.4.0"
2929

3030
ServiceRequest = TypeVar("ServiceRequest", bound=google.protobuf.message.Message)
3131
ServiceResponse = TypeVar("ServiceResponse", bound=google.protobuf.message.Message)

0 commit comments

Comments
 (0)