Skip to content

Commit 10bf259

Browse files
authored
Release 1.0.0 (#243)
1 parent f252e36 commit 10bf259

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ The workflow implementation basically turns `async def` functions into workflows
3333
event loop. This means task management, sleep, cancellation, etc have all been developed to seamlessly integrate with
3434
`asyncio` concepts.
3535

36-
**⚠️ UNDER DEVELOPMENT**
37-
38-
The Python SDK is under development. There are no compatibility guarantees at this time.
39-
4036
---
4137

4238
<!-- START doctoc generated TOC please keep comment here to allow auto update -->

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.1b4"
3+
version = "1.0.0"
44
description = "Temporal.io Python SDK"
55
license = "MIT"
66
authors = ["Temporal Technologies Inc <sdk@temporal.io>"]

temporalio/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import temporalio.exceptions
2626
import temporalio.runtime
2727

28-
__version__ = "0.1b4"
28+
__version__ = "1.0.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)