cinchdb 0.1.13__py3-none-any.whl → 0.1.14__py3-none-any.whl

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.
cinchdb/__init__.py CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  from cinchdb.core.database import connect, connect_api
4
4
 
5
- __version__ = "0.1.0"
5
+ try:
6
+ from importlib.metadata import version
7
+ __version__ = version("cinchdb")
8
+ except ImportError:
9
+ # Fallback for Python < 3.8
10
+ from importlib_metadata import version
11
+ __version__ = version("cinchdb")
12
+ except Exception:
13
+ # Final fallback if package metadata is not available
14
+ __version__ = "0.1.13"
6
15
 
7
16
  __all__ = ["connect", "connect_api"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cinchdb
3
- Version: 0.1.13
3
+ Version: 0.1.14
4
4
  Summary: A Git-like SQLite database management system with branching and multi-tenancy
5
5
  Project-URL: Homepage, https://github.com/russellromney/cinchdb
6
6
  Project-URL: Documentation, https://russellromney.github.io/cinchdb
@@ -1,4 +1,4 @@
1
- cinchdb/__init__.py,sha256=NZdSzfhRguSBTjJ2dcESOQYy53OZEuBndlB7U08GMY0,179
1
+ cinchdb/__init__.py,sha256=m-yJkJh1kFCBWHjgEi9Aqz7LrrxlhRWc13Daa8PJv74,477
2
2
  cinchdb/__main__.py,sha256=OpkDqn9zkTZhhYgvv_grswWLAHKbmxs4M-8C6Z5HfWY,85
3
3
  cinchdb/config.py,sha256=gocjMnYKLWhgvnteo6zprgwtK6Oevoxq547J_v-C9Ns,5265
4
4
  cinchdb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -53,8 +53,8 @@ cinchdb/security/encryption.py,sha256=nEmjNot2NyJZivrsf4jYB9Ei-LJdb2_O6BfXsO9-pw
53
53
  cinchdb/utils/__init__.py,sha256=yQQhEjndDiB2SUJybUmp9dvEOQKiR-GySe-WiCius5E,490
54
54
  cinchdb/utils/name_validator.py,sha256=dyGX5bjlTFRA9EGrWRQKp6kR__HSV04hLV5VueJs4IQ,4027
55
55
  cinchdb/utils/sql_validator.py,sha256=aWOGlPX0gBkuR6R1EBP2stbP4PHZuI6FUBi2Ljx7JUI,5815
56
- cinchdb-0.1.13.dist-info/METADATA,sha256=hhBYsukXvnx0Kh8GnQ4943zFJ7AFkiVX_Sm7vDQYg98,6116
57
- cinchdb-0.1.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
58
- cinchdb-0.1.13.dist-info/entry_points.txt,sha256=VBOIzvnGbkKudMCCmNORS3885QSyjZUVKJQ-Syqa62w,47
59
- cinchdb-0.1.13.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
60
- cinchdb-0.1.13.dist-info/RECORD,,
56
+ cinchdb-0.1.14.dist-info/METADATA,sha256=uNJzcdK2TKRlTyob3Kpf9mJQldTrxw-nDJcqOiz9wAo,6116
57
+ cinchdb-0.1.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
58
+ cinchdb-0.1.14.dist-info/entry_points.txt,sha256=VBOIzvnGbkKudMCCmNORS3885QSyjZUVKJQ-Syqa62w,47
59
+ cinchdb-0.1.14.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
60
+ cinchdb-0.1.14.dist-info/RECORD,,