ducpy 3.2.0__tar.gz → 3.2.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 (30) hide show
  1. {ducpy-3.2.0 → ducpy-3.2.1}/Cargo.lock +1 -1
  2. {ducpy-3.2.0 → ducpy-3.2.1}/PKG-INFO +1 -1
  3. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducpy/crate/Cargo.toml +1 -1
  4. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/api/version_control.rs +0 -1
  5. {ducpy-3.2.0 → ducpy-3.2.1}/Cargo.toml +0 -0
  6. {ducpy-3.2.0 → ducpy-3.2.1}/LICENSE +0 -0
  7. {ducpy-3.2.0 → ducpy-3.2.1}/README.md +0 -0
  8. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducpy/crate/src/lib.rs +0 -0
  9. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/.gitignore +0 -0
  10. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/Cargo.toml +0 -0
  11. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/LICENSE +0 -0
  12. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/README.md +0 -0
  13. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/build.rs +0 -0
  14. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/package.json +0 -0
  15. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/release.config.cjs +0 -0
  16. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/api/document.rs +0 -0
  17. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/api/meta.rs +0 -0
  18. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/api/mod.rs +0 -0
  19. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/db/bootstrap.rs +0 -0
  20. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/db/mod.rs +0 -0
  21. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/db/native.rs +0 -0
  22. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/db/wasm.rs +0 -0
  23. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/lib.rs +0 -0
  24. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/parse.rs +0 -0
  25. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/serde_utils.rs +0 -0
  26. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/serialize.rs +0 -0
  27. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/src/types.rs +0 -0
  28. {ducpy-3.2.0 → ducpy-3.2.1}/packages/ducrs/tests/.gitignore +0 -0
  29. {ducpy-3.2.0 → ducpy-3.2.1}/pyproject.toml +0 -0
  30. {ducpy-3.2.0 → ducpy-3.2.1}/src/ducpy_native/__init__.py +0 -0
@@ -411,7 +411,7 @@ dependencies = [
411
411
 
412
412
  [[package]]
413
413
  name = "ducpy-native"
414
- version = "3.2.0"
414
+ version = "3.2.1"
415
415
  dependencies = [
416
416
  "duc",
417
417
  "pyo3",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ducpy
3
- Version: 3.2.0
3
+ Version: 3.2.1
4
4
  Classifier: License :: OSI Approved :: MIT License
5
5
  Requires-Dist: nanoid>=2.0.0
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "ducpy-native"
3
- version = "3.2.0"
3
+ version = "3.2.1"
4
4
  edition = "2021"
5
5
  description = "Python native extension for the duc file format (used by ducpy)"
6
6
  publish = false
@@ -4,7 +4,6 @@
4
4
  //! - Restoring document state at any version (checkpoint or delta replay)
5
5
  //! - Creating new checkpoints and deltas
6
6
  //! - Listing version history
7
- //! - Pruning old versions
8
7
  //!
9
8
  //! All operations work directly against the embedded SQLite schema
10
9
  //! (`version_control.sql`) and produce/consume the canonical Rust types
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