securewithtrace 0.3.2__tar.gz → 0.3.3__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.

Potentially problematic release.


This version of securewithtrace might be problematic. Click here for more details.

Files changed (22) hide show
  1. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/.github/workflows/ci.yml +1 -0
  2. securewithtrace-0.3.3/.release-please-manifest.json +3 -0
  3. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/CHANGELOG.md +7 -0
  4. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/PKG-INFO +1 -1
  5. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/pyproject.toml +1 -1
  6. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/uv.lock +1 -1
  7. securewithtrace-0.3.2/.release-please-manifest.json +0 -3
  8. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/.github/workflows/lint-pr.yml +0 -0
  9. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/.github/workflows/release.yml +0 -0
  10. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/.gitignore +0 -0
  11. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/.python-version +0 -0
  12. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/CONTRIBUTING.md +0 -0
  13. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/README.md +0 -0
  14. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/release-please-config.json +0 -0
  15. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/src/securewithtrace/__init__.py +0 -0
  16. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/src/securewithtrace/py.typed +0 -0
  17. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/src/securewithtrace/webhooks/__init__.py +0 -0
  18. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/src/securewithtrace/webhooks/events.py +0 -0
  19. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/src/securewithtrace/webhooks/exceptions.py +0 -0
  20. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/src/securewithtrace/webhooks/handler.py +0 -0
  21. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/tests/conftest.py +0 -0
  22. {securewithtrace-0.3.2 → securewithtrace-0.3.3}/tests/test_webhooks.py +0 -0
@@ -13,6 +13,7 @@ jobs:
13
13
  steps:
14
14
  - uses: actions/checkout@v4
15
15
  - uses: astral-sh/setup-uv@v6
16
+ - run: uv python install
16
17
  - run: uv lock --check
17
18
 
18
19
  format:
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.3.3"
3
+ }
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.3](https://github.com/securewithtrace/trace-python/compare/securewithtrace-v0.3.2...securewithtrace-v0.3.3) (2026-04-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * install project Python before lockfile check in CI ([#13](https://github.com/securewithtrace/trace-python/issues/13)) ([ef692fd](https://github.com/securewithtrace/trace-python/commit/ef692fd531bea4f3fb66ed8195dd54dfa6b8e62b))
9
+
3
10
  ## [0.3.2](https://github.com/securewithtrace/trace-python/compare/securewithtrace-v0.3.1...securewithtrace-v0.3.2) (2026-04-16)
4
11
 
5
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: securewithtrace
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Python SDK for the Trace security platform
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "securewithtrace"
7
- version = "0.3.2"
7
+ version = "0.3.3"
8
8
  description = "Python SDK for the Trace security platform"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -309,7 +309,7 @@ wheels = [
309
309
 
310
310
  [[package]]
311
311
  name = "securewithtrace"
312
- version = "0.3.1"
312
+ version = "0.3.2"
313
313
  source = { editable = "." }
314
314
 
315
315
  [package.dev-dependencies]
@@ -1,3 +0,0 @@
1
- {
2
- ".": "0.3.2"
3
- }