Skip to content

Commit 13b5276

Browse files
committed
Set version to 1.0.0
1 parent d606b35 commit 13b5276

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
# v0.5.0
8+
## v1.0.0
9+
10+
- Allow calling sub-orchestrators by name
11+
- Improve execution logging
12+
- Drop Python 3.9, add 3.14
13+
- Abandon workitems if unhandled exception occurs in client
14+
- Reduce exposure of Entity context internally
15+
16+
## v0.5.0
917

1018
- Added support for Durable Entities
1119

durabletask-azuremanaged/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v1.0.0
9+
10+
- Drop Python 3.9, add 3.14
11+
- Updates base dependency to durabletask v1.0.0
12+
- See durabletask changelog for more details
13+
- Allow logging configuration for DurableTaskSchedulerClient
14+
815
## v0.4.0
916

1017
- Updates base dependency to durabletask v0.5.0

durabletask-azuremanaged/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "durabletask.azuremanaged"
12-
version = "0.4.0"
12+
version = "1.0.0"
1313
description = "Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler"
1414
keywords = [
1515
"durable",
@@ -18,15 +18,15 @@ keywords = [
1818
"azure"
1919
]
2020
classifiers = [
21-
"Development Status :: 3 - Alpha",
21+
"Development Status :: 5 - Production/Stable",
2222
"Programming Language :: Python :: 3",
2323
"License :: OSI Approved :: MIT License",
2424
]
2525
requires-python = ">=3.10"
2626
license = {file = "LICENSE"}
2727
readme = "README.md"
2828
dependencies = [
29-
"durabletask>=0.5.0",
29+
"durabletask>=1.0.0",
3030
"azure-identity>=1.19.0"
3131
]
3232

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "durabletask"
12-
version = "0.5.0"
12+
version = "1.0.0"
1313
description = "A Durable Task Client SDK for Python"
1414
keywords = [
1515
"durable",
1616
"task",
1717
"workflow"
1818
]
1919
classifiers = [
20-
"Development Status :: 3 - Alpha",
20+
"Development Status :: 5 - Production/Stable",
2121
"Programming Language :: Python :: 3",
2222
"License :: OSI Approved :: MIT License",
2323
]

0 commit comments

Comments
 (0)