surreal-orm-lite 0.6.2__tar.gz → 0.6.4__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.2 → surreal_orm_lite-0.6.4}/Makefile +8 -0
  2. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/PKG-INFO +1 -1
  3. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/pyproject.toml +1 -1
  4. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/__init__.py +1 -1
  5. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/.gitignore +0 -0
  6. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/CHANGELOG.md +0 -0
  7. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/LICENSE +0 -0
  8. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/README.md +0 -0
  9. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/__init__.py +0 -0
  10. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/aggregations.py +0 -0
  11. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/connection_manager.py +0 -0
  12. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/constants.py +0 -0
  13. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/enum.py +0 -0
  14. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/exceptions.py +0 -0
  15. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/model_base.py +0 -0
  16. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/py.typed +0 -0
  17. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/q.py +0 -0
  18. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/query_set.py +0 -0
  19. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/signals.py +0 -0
  20. {surreal_orm_lite-0.6.2 → surreal_orm_lite-0.6.4}/src/surreal_orm_lite/utils.py +0 -0
@@ -44,5 +44,13 @@ test-all-python:
44
44
  html: test-all-python
45
45
  uv run coverage html -d htmlcov
46
46
 
47
+ .PHONY: sync-version # Fix all version references to match pyproject.toml
48
+ sync-version:
49
+ uv run python scripts/sync_version.py --fix
50
+
51
+ .PHONY: check-version # Check that all version references are in sync
52
+ check-version:
53
+ uv run python scripts/sync_version.py
54
+
47
55
  .PHONY: all
48
56
  all: format mypy lint typecheck test-all-python
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: surreal-orm-lite
3
- Version: 0.6.2
3
+ Version: 0.6.4
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.2"
3
+ version = "0.6.4"
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.2"
1
+ __version__ = "0.6.4"
2
2
 
3
3
  from .aggregations import Aggregation, Avg, Count, Max, Min, Sum
4
4
  from .connection_manager import SurrealDBConnectionManager