diff --git a/.github/doxygen/Doxyfile b/.github/doxygen/Doxyfile index fc99709d..f765ee81 100644 --- a/.github/doxygen/Doxyfile +++ b/.github/doxygen/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = "LLM for Unity" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v2.1.0 +PROJECT_NUMBER = v2.1.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/CHANGELOG.md b/CHANGELOG.md index f10a04b8..31631aac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v2.1.1 +#### 🐛 Fixes + +- Resolve build directory creation + ## v2.1.0 #### 🚀 Features diff --git a/CHANGELOG.release.md b/CHANGELOG.release.md index 34a829c4..379083c3 100644 --- a/CHANGELOG.release.md +++ b/CHANGELOG.release.md @@ -1,8 +1,3 @@ -### 🚀 Features +### 🐛 Fixes -- Android deployment (PR: #194) -- Allow to download models on startup with resumable download functionality (PR: #196) -- LLM model manager (PR: #196) -- Add Llama 3 7B and Qwen2 0.5B models (PR: #198) -- Start LLM always asynchronously (PR: #199) -- Add contributing guidelines (PR: #201) +- Resolve build directory creation \ No newline at end of file diff --git a/Editor/LLMBuildProcessor.cs b/Editor/LLMBuildProcessor.cs index 23165cbf..e5e61b0f 100644 --- a/Editor/LLMBuildProcessor.cs +++ b/Editor/LLMBuildProcessor.cs @@ -33,8 +33,7 @@ public void OnPreprocessBuild(BuildReport report) platform = "ios"; break; } - LLMBuilder.HideLibraryPlatforms(platform); - LLMBuilder.BuildModels(); + LLMBuilder.Build(platform); AssetDatabase.Refresh(); } diff --git a/Runtime/LLMUnitySetup.cs b/Runtime/LLMUnitySetup.cs index 58c6b677..8150b22f 100644 --- a/Runtime/LLMUnitySetup.cs +++ b/Runtime/LLMUnitySetup.cs @@ -84,7 +84,7 @@ public class LLMUnitySetup { // DON'T CHANGE! the version is autocompleted with a GitHub action /// LLM for Unity version - public static string Version = "v2.1.0"; + public static string Version = "v2.1.1"; /// LlamaLib version public static string LlamaLibVersion = "v1.1.6"; /// LlamaLib url diff --git a/VERSION b/VERSION index 1defe531..826e1424 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v2.1.0 +v2.1.1 diff --git a/package.json b/package.json index 4f00e89d..795878ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ai.undream.llm", - "version": "2.1.0", + "version": "2.1.1", "displayName": "LLM for Unity", "description": "LLM for Unity allows to run and distribute Large Language Models (LLMs) in the Unity engine.", "unity": "2022.3",