Skip to content

Commit 901c63d

Browse files
authored
Set version to 1.0.0 (#74)
* Set version to 1.0.0 * Use consistent formatting * CHANGELOG tweaks
1 parent d606b35 commit 901c63d

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,23 @@ 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+
ADDED:
11+
12+
- Allow calling sub-orchestrators by name
13+
- Abandon workitems if unhandled exception occurs in client
14+
15+
CHANGED:
16+
17+
- Improve execution logging
18+
- Supported Python versions are now 3.10- 3.14. Python 3.9 is end of life and has been removed.
19+
20+
FIXED:
21+
22+
- Reduce exposure of Entity context internally
23+
24+
## v0.5.0
925

1026
- Added support for Durable Entities
1127

durabletask-azuremanaged/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +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+
## v1.0.0
9+
10+
CHANGED:
11+
12+
- Supported Python versions are now 3.10- 3.14. Python 3.9 is end of life and has been removed.
13+
- Updates base dependency to durabletask v1.0.0
14+
- See durabletask changelog for more details
15+
- Allow logging configuration for DurableTaskSchedulerClient
16+
817
## v0.4.0
918

1019
- 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)