Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gen_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def process_specs(self):
api_name = "core"
# core api has a v0.0.1 in the spec but that will change
# for now use the version provided by a user from the cmd
api_version = self.version
api_version = self.version.replace(".", "_")
logger.debug(f"API name: {api_name}, API version: {api_version}")
self.sanitize_schema_objects(spec_file, api_name, api_version)
self.generate_classes_for_spec(spec_file, api_name, api_version)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pydantic-eda"
version = "0.3.0"
version = "0.3.2"
description = "Pydantic models for EDA OpenAPI specification"
readme = "README.md"
requires-python = "~=3.12"
Expand Down