workers-runtime-sdk 0.2.0__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: workers-runtime-sdk
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Python runtime SDK for Cloudflare Workers
5
5
  Requires-Python: >=3.12
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "workers-runtime-sdk"
7
- version = "0.2.0"
7
+ version = "0.3.0"
8
8
  description = "Python runtime SDK for Cloudflare Workers"
9
9
  requires-python = ">=3.12"
10
10
 
@@ -1161,7 +1161,7 @@ class WorkerEntrypoint:
1161
1161
  Base class used to define a Worker Entrypoint.
1162
1162
  """
1163
1163
 
1164
- ctx: "DurableObjectState"
1164
+ ctx: "ExecutionContext"
1165
1165
  env: "Env"
1166
1166
 
1167
1167
  def __init__(self, ctx: "ExecutionContext", env: "Env"):