etlantic-sqlmodel 0.18.0__tar.gz → 0.19.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: etlantic-sqlmodel
3
- Version: 0.18.0
3
+ Version: 0.19.0
4
4
  Summary: ContractModel ↔ SQLModel bridge for ETLantic.
5
5
  Project-URL: Homepage, https://github.com/eddiethedean/etlantic
6
6
  Project-URL: Documentation, https://github.com/eddiethedean/etlantic/tree/main/docs
@@ -18,17 +18,17 @@ Classifier: Programming Language :: Python :: 3.12
18
18
  Classifier: Programming Language :: Python :: 3.13
19
19
  Classifier: Typing :: Typed
20
20
  Requires-Python: >=3.11
21
- Requires-Dist: etlantic<0.19,>=0.18.0
21
+ Requires-Dist: etlantic<0.20,>=0.19.0
22
22
  Requires-Dist: sqlmodel<1,>=0.0.22
23
23
  Description-Content-Type: text/markdown
24
24
 
25
25
  # etlantic-sqlmodel
26
26
 
27
27
  Optional bridge between ETLantic `Data` contracts and
28
- [SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.18.
28
+ [SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.19.
29
29
 
30
30
  ```bash
31
- pip install 'etlantic==0.18.0' 'etlantic-sqlmodel==0.18.0'
31
+ pip install 'etlantic==0.19.0' 'etlantic-sqlmodel==0.19.0'
32
32
  # or: pip install 'etlantic[sqlmodel]'
33
33
  ```
34
34
 
@@ -1,10 +1,10 @@
1
1
  # etlantic-sqlmodel
2
2
 
3
3
  Optional bridge between ETLantic `Data` contracts and
4
- [SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.18.
4
+ [SQLModel](https://sqlmodel.tiangolo.com/) table models for ETLantic 0.19.
5
5
 
6
6
  ```bash
7
- pip install 'etlantic==0.18.0' 'etlantic-sqlmodel==0.18.0'
7
+ pip install 'etlantic==0.19.0' 'etlantic-sqlmodel==0.19.0'
8
8
  # or: pip install 'etlantic[sqlmodel]'
9
9
  ```
10
10
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "etlantic-sqlmodel"
3
- version = "0.18.0"
3
+ version = "0.19.0"
4
4
  description = "ContractModel ↔ SQLModel bridge for ETLantic."
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -17,7 +17,7 @@ classifiers = [
17
17
  "Typing :: Typed",
18
18
  ]
19
19
  dependencies = [
20
- "etlantic>=0.18.0,<0.19",
20
+ "etlantic>=0.19.0,<0.20",
21
21
  "sqlmodel>=0.0.22,<1",
22
22
  ]
23
23
 
@@ -20,7 +20,7 @@ from etlantic.schema_drift import (
20
20
  )
21
21
  from sqlmodel import Field, SQLModel
22
22
 
23
- __version__ = "0.18.0"
23
+ __version__ = "0.19.0"
24
24
 
25
25
  __all__ = [
26
26
  "SqlModelIntegrationPlugin",