surreal-orm-lite 0.6.0__tar.gz → 0.6.2__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 (20) hide show
  1. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/PKG-INFO +1 -1
  2. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/pyproject.toml +1 -1
  3. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/__init__.py +1 -1
  4. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/.gitignore +0 -0
  5. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/CHANGELOG.md +0 -0
  6. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/LICENSE +0 -0
  7. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/Makefile +0 -0
  8. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/README.md +0 -0
  9. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/__init__.py +0 -0
  10. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/aggregations.py +0 -0
  11. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/connection_manager.py +0 -0
  12. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/constants.py +0 -0
  13. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/enum.py +0 -0
  14. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/exceptions.py +0 -0
  15. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/model_base.py +0 -0
  16. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/py.typed +0 -0
  17. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/q.py +0 -0
  18. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/query_set.py +0 -0
  19. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/signals.py +0 -0
  20. {surreal_orm_lite-0.6.0 → surreal_orm_lite-0.6.2}/src/surreal_orm_lite/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: surreal-orm-lite
3
- Version: 0.6.0
3
+ Version: 0.6.2
4
4
  Summary: Lightweight Django-style ORM for SurrealDB using the official Python SDK. Async support with Pydantic validation.
5
5
  Project-URL: Homepage, https://github.com/EulogySnowfall/SurrealDB-ORM-lite
6
6
  Project-URL: Documentation, https://github.com/EulogySnowfall/SurrealDB-ORM-lite
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "surreal-orm-lite"
3
- version = "0.6.0"
3
+ version = "0.6.2"
4
4
  description = "Lightweight Django-style ORM for SurrealDB using the official Python SDK. Async support with Pydantic validation."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1,4 +1,4 @@
1
- __version__ = "0.6.0"
1
+ __version__ = "0.6.2"
2
2
 
3
3
  from .aggregations import Aggregation, Avg, Count, Max, Min, Sum
4
4
  from .connection_manager import SurrealDBConnectionManager