Skip to content

Commit fe99072

Browse files
authored
Update version to 0.1b1 (#95)
1 parent f560680 commit fe99072

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,11 @@ jobs:
8686
- os: macos-latest
8787
package-suffix: macos-amd64
8888
ci-arch: auto
89-
- os: macos-latest
90-
package-suffix: macos-arm64
91-
ci-arch: arm64
89+
# TODO(cretz): Disabling macOS arm because cibuildwheel is still
90+
# generating an x64 wheel name even for arm64
91+
#- os: macos-latest
92+
# package-suffix: macos-arm64
93+
# ci-arch: arm64
9294
rust-add-target: aarch64-apple-darwin
9395
- os: windows-latest
9496
package-suffix: windows-amd64

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ automatically [converted to dictionaries](https://docs.python.org/3/library/data
199199
encoding as JSON. Since Python is a dynamic language, when decoding via
200200
[`json.load`](https://docs.python.org/3/library/json.html#json.load), the type is not known at runtime so, for example,
201201
a JSON object will be a `dict`. As a special case, if the parameter type hint is a data class for a JSON payload, it is
202-
decoded into an instance of that data class (properly recursing into child data classes).
202+
decoded into an instance of that data class (properly recursing into child data classes). Currently this capability does
203+
not extend to any other type hints that may wrap a data class like `Optional`, `List`, etc. This support is planned.
203204

204205
### Workers
205206

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "temporalio"
3-
version = "0.1a2"
3+
version = "0.1b1"
44
description = "Temporal.io Python SDK"
55
license = "MIT"
66
authors = ["Temporal Technologies Inc <sdk@temporal.io>"]

temporalio/workflow_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import temporalio.bridge.telemetry
2020
import temporalio.exceptions
2121

22-
__version__ = "0.1a2"
22+
__version__ = "0.1b1"
2323

2424
WorkflowServiceRequest = TypeVar(
2525
"WorkflowServiceRequest", bound=google.protobuf.message.Message

0 commit comments

Comments
 (0)