surreal-orm-lite 0.2.1__tar.gz → 0.2.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.
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/CHANGELOG.md +6 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/PKG-INFO +6 -6
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/pyproject.toml +6 -6
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/__init__.py +1 -1
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/.gitignore +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/LICENSE +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/Makefile +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/README.md +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/__init__.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/connection_manager.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/constants.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/enum.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/exceptions.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/model_base.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/py.typed +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/query_set.py +0 -0
- {surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/utils.py +0 -0
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.2] - 2026-02-05
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Corrected project URLs in package metadata (case sensitivity)
|
|
13
|
+
|
|
8
14
|
## [0.2.1] - 2026-02-04
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: surreal-orm-lite
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Lightweight Django-style ORM for SurrealDB using the official Python SDK. Async support with Pydantic validation.
|
|
5
|
-
Project-URL: Homepage, https://github.com/EulogySnowfall/
|
|
6
|
-
Project-URL: Documentation, https://github.com/EulogySnowfall/
|
|
7
|
-
Project-URL: Repository, https://github.com/EulogySnowfall/
|
|
8
|
-
Project-URL: Issues, https://github.com/EulogySnowfall/
|
|
9
|
-
Project-URL: Changelog, https://github.com/EulogySnowfall/
|
|
5
|
+
Project-URL: Homepage, https://github.com/EulogySnowfall/SurrealDB-ORM-lite
|
|
6
|
+
Project-URL: Documentation, https://github.com/EulogySnowfall/SurrealDB-ORM-lite
|
|
7
|
+
Project-URL: Repository, https://github.com/EulogySnowfall/SurrealDB-ORM-lite.git
|
|
8
|
+
Project-URL: Issues, https://github.com/EulogySnowfall/SurrealDB-ORM-lite/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/EulogySnowfall/SurrealDB-ORM-lite/blob/main/CHANGELOG.md
|
|
10
10
|
Author-email: Yannick Croteau <croteau.yannick@gmail.com>
|
|
11
11
|
License: # MIT License
|
|
12
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "surreal-orm-lite"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.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"
|
|
@@ -30,11 +30,11 @@ dependencies = [
|
|
|
30
30
|
]
|
|
31
31
|
|
|
32
32
|
[project.urls]
|
|
33
|
-
Homepage = "https://github.com/EulogySnowfall/
|
|
34
|
-
Documentation = "https://github.com/EulogySnowfall/
|
|
35
|
-
Repository = "https://github.com/EulogySnowfall/
|
|
36
|
-
Issues = "https://github.com/EulogySnowfall/
|
|
37
|
-
Changelog = "https://github.com/EulogySnowfall/
|
|
33
|
+
Homepage = "https://github.com/EulogySnowfall/SurrealDB-ORM-lite"
|
|
34
|
+
Documentation = "https://github.com/EulogySnowfall/SurrealDB-ORM-lite"
|
|
35
|
+
Repository = "https://github.com/EulogySnowfall/SurrealDB-ORM-lite.git"
|
|
36
|
+
Issues = "https://github.com/EulogySnowfall/SurrealDB-ORM-lite/issues"
|
|
37
|
+
Changelog = "https://github.com/EulogySnowfall/SurrealDB-ORM-lite/blob/main/CHANGELOG.md"
|
|
38
38
|
|
|
39
39
|
[tool.setuptools]
|
|
40
40
|
packages = ["src/surreal_orm_lite"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{surreal_orm_lite-0.2.1 → surreal_orm_lite-0.2.2}/src/surreal_orm_lite/connection_manager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|