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.
@@ -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.1
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/surreal-orm-lite
6
- Project-URL: Documentation, https://github.com/EulogySnowfall/surreal-orm-lite
7
- Project-URL: Repository, https://github.com/EulogySnowfall/surreal-orm-lite.git
8
- Project-URL: Issues, https://github.com/EulogySnowfall/surreal-orm-lite/issues
9
- Project-URL: Changelog, https://github.com/EulogySnowfall/surreal-orm-lite/blob/main/CHANGELOG.md
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.1"
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/surreal-orm-lite"
34
- Documentation = "https://github.com/EulogySnowfall/surreal-orm-lite"
35
- Repository = "https://github.com/EulogySnowfall/surreal-orm-lite.git"
36
- Issues = "https://github.com/EulogySnowfall/surreal-orm-lite/issues"
37
- Changelog = "https://github.com/EulogySnowfall/surreal-orm-lite/blob/main/CHANGELOG.md"
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"]
@@ -1,4 +1,4 @@
1
- __version__ = "0.2.1"
1
+ __version__ = "0.2.2"
2
2
 
3
3
  from .connection_manager import SurrealDBConnectionManager
4
4
  from .enum import OrderBy