dirsql 0.0.19__tar.gz → 0.0.20__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 (30) hide show
  1. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/publish.yml +7 -1
  2. {dirsql-0.0.19 → dirsql-0.0.20}/.gitignore +3 -0
  3. {dirsql-0.0.19 → dirsql-0.0.20}/PKG-INFO +1 -1
  4. {dirsql-0.0.19 → dirsql-0.0.20}/pyproject.toml +1 -1
  5. {dirsql-0.0.19 → dirsql-0.0.20}/.claude/CLAUDE.md +0 -0
  6. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/minor-release.yml +0 -0
  7. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/patch-release.yml +0 -0
  8. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/pr-monitor.yml +0 -0
  9. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/python-lint.yml +0 -0
  10. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/python-test.yml +0 -0
  11. {dirsql-0.0.19 → dirsql-0.0.20}/.github/workflows/rust-test.yml +0 -0
  12. {dirsql-0.0.19 → dirsql-0.0.20}/.npmignore +0 -0
  13. {dirsql-0.0.19 → dirsql-0.0.20}/Cargo.lock +0 -0
  14. {dirsql-0.0.19 → dirsql-0.0.20}/Cargo.toml +0 -0
  15. {dirsql-0.0.19 → dirsql-0.0.20}/LICENSE +0 -0
  16. {dirsql-0.0.19 → dirsql-0.0.20}/README.md +0 -0
  17. {dirsql-0.0.19 → dirsql-0.0.20}/SUMMARY.md +0 -0
  18. {dirsql-0.0.19 → dirsql-0.0.20}/python/dirsql/__init__.py +0 -0
  19. {dirsql-0.0.19 → dirsql-0.0.20}/python/dirsql/_async.py +0 -0
  20. {dirsql-0.0.19 → dirsql-0.0.20}/src/db.rs +0 -0
  21. {dirsql-0.0.19 → dirsql-0.0.20}/src/differ.rs +0 -0
  22. {dirsql-0.0.19 → dirsql-0.0.20}/src/lib.rs +0 -0
  23. {dirsql-0.0.19 → dirsql-0.0.20}/src/matcher.rs +0 -0
  24. {dirsql-0.0.19 → dirsql-0.0.20}/src/scanner.rs +0 -0
  25. {dirsql-0.0.19 → dirsql-0.0.20}/src/watcher.rs +0 -0
  26. {dirsql-0.0.19 → dirsql-0.0.20}/tests/__init__.py +0 -0
  27. {dirsql-0.0.19 → dirsql-0.0.20}/tests/conftest.py +0 -0
  28. {dirsql-0.0.19 → dirsql-0.0.20}/tests/integration/__init__.py +0 -0
  29. {dirsql-0.0.19 → dirsql-0.0.20}/tests/integration/test_async_dirsql.py +0 -0
  30. {dirsql-0.0.19 → dirsql-0.0.20}/tests/integration/test_dirsql.py +0 -0
@@ -223,6 +223,8 @@ jobs:
223
223
  needs: tag
224
224
  if: needs.tag.outputs.created == 'true' && inputs.publish_crates
225
225
  runs-on: ubuntu-latest
226
+ permissions:
227
+ id-token: write
226
228
  steps:
227
229
  - uses: actions/checkout@v6
228
230
  with:
@@ -235,9 +237,13 @@ jobs:
235
237
  run: |
236
238
  sed -i 's/^version = ".*"/version = "${{ needs.tag.outputs.new_version }}"/' Cargo.toml
237
239
 
240
+ - name: Get crates.io token
241
+ uses: rust-lang/crates-io-auth-action@v1
242
+ id: auth
243
+
238
244
  - name: Publish to crates.io
239
245
  env:
240
- CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
246
+ CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
241
247
  run: |
242
248
  for attempt in 1 2 3; do
243
249
  echo "Attempt $attempt of 3"
@@ -1,6 +1,9 @@
1
1
  /target
2
2
  .beads
3
3
  .claude/settings.local.json
4
+ .claude/scheduled_tasks.lock
5
+ .worktrees/
6
+ notes/
4
7
 
5
8
  # Dolt database files (added by bd init)
6
9
  .dolt/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dirsql
3
- Version: 0.0.19
3
+ Version: 0.0.20
4
4
  Requires-Dist: pytest>=8 ; extra == 'dev'
5
5
  Requires-Dist: pytest-describe>=2 ; extra == 'dev'
6
6
  Requires-Dist: pytest-asyncio>=0.23 ; extra == 'dev'
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "dirsql"
7
- version = "0.0.19"
7
+ version = "0.0.20"
8
8
  description = "Ephemeral SQL index over a local directory"
9
9
  license = "MIT"
10
10
  requires-python = ">=3.12"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes