workers-py 1.5.0__tar.gz → 1.5.1__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.
Files changed (25) hide show
  1. {workers_py-1.5.0 → workers_py-1.5.1}/CHANGELOG.md +9 -0
  2. {workers_py-1.5.0 → workers_py-1.5.1}/PKG-INFO +1 -1
  3. {workers_py-1.5.0 → workers_py-1.5.1}/pyproject.toml +1 -1
  4. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/cli.py +1 -1
  5. {workers_py-1.5.0 → workers_py-1.5.1}/uv.lock +1 -1
  6. {workers_py-1.5.0 → workers_py-1.5.1}/.github/workflows/commitlint.yml +0 -0
  7. {workers_py-1.5.0 → workers_py-1.5.1}/.github/workflows/lint.yml +0 -0
  8. {workers_py-1.5.0 → workers_py-1.5.1}/.github/workflows/release.yml +0 -0
  9. {workers_py-1.5.0 → workers_py-1.5.1}/.github/workflows/tests.yml +0 -0
  10. {workers_py-1.5.0 → workers_py-1.5.1}/.gitignore +0 -0
  11. {workers_py-1.5.0 → workers_py-1.5.1}/.pre-commit-config.yaml +0 -0
  12. {workers_py-1.5.0 → workers_py-1.5.1}/CLAUDE.md +0 -0
  13. {workers_py-1.5.0 → workers_py-1.5.1}/CONTRIBUTING.md +0 -0
  14. {workers_py-1.5.0 → workers_py-1.5.1}/README.md +0 -0
  15. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/__init__.py +0 -0
  16. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/__main__.py +0 -0
  17. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/metadata.py +0 -0
  18. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/sync.py +0 -0
  19. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/types.py +0 -0
  20. {workers_py-1.5.0 → workers_py-1.5.1}/src/pywrangler/utils.py +0 -0
  21. {workers_py-1.5.0 → workers_py-1.5.1}/tests/__init__.py +0 -0
  22. {workers_py-1.5.0 → workers_py-1.5.1}/tests/test_cli.py +0 -0
  23. {workers_py-1.5.0 → workers_py-1.5.1}/tests/test_py_version_detect.py +0 -0
  24. {workers_py-1.5.0 → workers_py-1.5.1}/tests/test_types.py +0 -0
  25. {workers_py-1.5.0 → workers_py-1.5.1}/workers.py +0 -0
@@ -2,6 +2,15 @@
2
2
 
3
3
  <!-- version list -->
4
4
 
5
+ ## v1.5.1 (2025-10-13)
6
+
7
+ ### Bug Fixes
8
+
9
+ - Fix default value for --outdir in help message
10
+ ([#39](https://github.com/cloudflare/workers-py/pull/39),
11
+ [`7aded7a`](https://github.com/cloudflare/workers-py/commit/7aded7a43580fc50b6408baee0184fa814481c9b))
12
+
13
+
5
14
  ## v1.5.0 (2025-10-10)
6
15
 
7
16
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: workers-py
3
- Version: 1.5.0
3
+ Version: 1.5.1
4
4
  Summary: A set of libraries and tools for Python Workers
5
5
  Project-URL: Homepage, https://github.com/cloudflare/workers-py
6
6
  Project-URL: Bug Tracker, https://github.com/cloudflare/workers-py/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "workers-py"
7
- version = "1.5.0"
7
+ version = "1.5.1"
8
8
  description = "A set of libraries and tools for Python Workers"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -98,7 +98,7 @@ def app(ctx, debug=False):
98
98
  "-o",
99
99
  "--outdir",
100
100
  type=click.Path(writable=True),
101
- help="The output directory to write the generated types. Default: .venv/lib/python3.vv/site-packages/js-stubs",
101
+ help="The output directory to write the generated types. Default: ./src",
102
102
  )
103
103
  @click.option(
104
104
  "-c",
@@ -689,7 +689,7 @@ wheels = [
689
689
 
690
690
  [[package]]
691
691
  name = "workers-py"
692
- version = "1.5.0"
692
+ version = "1.5.1"
693
693
  source = { editable = "." }
694
694
  dependencies = [
695
695
  { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes