Skip to content

Commit f0b53ed

Browse files
committed
Merge branch 'main' into alpha
2 parents d213b25 + 7be8108 commit f0b53ed

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.3.11](https://github.com/FullStackWithLawrence/openai-embeddings/compare/v1.3.10...v1.3.11) (2025-06-19)
2+
3+
4+
### Bug Fixes
5+
6+
* force a new release ([817ce59](https://github.com/FullStackWithLawrence/openai-embeddings/commit/817ce591eea9e04c12d5f677a70024baa28b2eb9))
7+
18
## [1.3.10](https://github.com/FullStackWithLawrence/openai-embeddings/compare/v1.3.9...v1.3.10) (2025-06-19)
29

310

models/__version__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
# -*- coding: utf-8 -*-
12
# Managed via automated CI/CD in .github/workflows/semanticVersionBump.yml.
2-
__version__ = "1.3.11-alpha.1"
3+
__version__ = "1.3.11"

setup_utils.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ def load_version() -> Dict[str, str]:
1919
"""Stringify the __version__ module."""
2020
version_file_path = os.path.join(PROJECT_ROOT, "__version__.py")
2121
spec = importlib.util.spec_from_file_location("__version__", version_file_path)
22+
if spec is None:
23+
raise ImportError(f"Could not find version file at {version_file_path}")
2224
version_module = importlib.util.module_from_spec(spec)
25+
if version_module is None:
26+
raise ImportError(f"Could not load version module from {version_file_path}")
27+
if spec.loader is None:
28+
raise ImportError(f"Could not load version module from {version_file_path} - no loader found")
2329
spec.loader.exec_module(version_module)
2430
return version_module.__dict__
2531

0 commit comments

Comments
 (0)