diff --git a/CHANGELOG.md b/CHANGELOG.md index bf4dcbf..bf5eca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## v0.5.0 (2024-10-07) + +### Feat + +- **core**: add environment and execution mode property to base controller +- **llm**: add llm base controller and aws controller +- **vllm**: saving endpoint base url in parameter store + +### Fix + +- **llm**: move the cloud agnostic methods of the controller to the base +- **core**: broken import after clean up __init__ files +- **llm, example**: pulumi only works with `__main__.py` file name +- **core**: init all controllers when using `from damavand...controllers` +- **vllm**: make api route open ai compatible + ## v0.4.1 (2024-10-03) ### Refactor diff --git a/src/damavand/__init__.py b/src/damavand/__init__.py index 3d26edf..3d18726 100644 --- a/src/damavand/__init__.py +++ b/src/damavand/__init__.py @@ -1 +1 @@ -__version__ = "0.4.1" +__version__ = "0.5.0"