diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d85122cc..1f0a3e65a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1468 + +## (2024-03-18) Python Version 1.1.32, NPM Version 1.1.15 + +### Features + +- **editor:** Added UI for updating global model settings in AIConfig files (https://github.com/lastmile-ai/aiconfig/pull/1441) +- **vscode:** Added commands to allow creating an empty AIConfig in addition to the example starter file (https://github.com/lastmile-ai/aiconfig/pull/1448) + +### Bug Fixes / Tasks + +- **python-sdk:** Removed test dependencies from the `python-aiconfig` package (https://github.com/lastmile-ai/aiconfig/pull/1463) +- **python-dev:** Added Python auto-formatting check as a Github action to prevent unformatted files from merging into the repository (https://github.com/lastmile-ai/aiconfig/pull/1458) +- **typescript-dev:** Specified jest to ignore `dist` files that get generated from running `yarn` so that automated tests do not incorrectly fail (https://github.com/lastmile-ai/aiconfig/pull/1466) + +### Documentation + +- [update] Added keywords and categories to the VS Code extension, making it easier to find (https://github.com/lastmile-ai/aiconfig/pull/1430) +- [update] Removed erroneous `await` statement for loading AIConfig file in Gradio Notebook docs (https://github.com/lastmile-ai/aiconfig/pull/1435) → thanks @Anikait10 ! +- [update] Removed spaces between Github README badges to remove visible underscores (https://github.com/lastmile-ai/aiconfig/pull/1446) → thanks @jonathanagustin ! + ## (2024-03-11) Python Version 1.1.31, NPM Version 1.1.14 Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1426 @@ -16,7 +37,7 @@ Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1 - **vscode:** Removed check for `.env` file path needing to be a parent of user’s VS Code workspace, allowing users to specify an `.env` file that they can define anywhere (https://github.com/lastmile-ai/aiconfig/pull/1398) Documentation - [new] Created README and cookbook to show how to use the Groq inference extension (https://github.com/lastmile-ai/aiconfig/pull/1405, https://github.com/lastmile-ai/aiconfig/pull/1402) -- [updated] Removed warning text from Gradio Notebooks docs saying that Gradio SDK needs to be `<= v4.16.0` because that issue is now resolved and we can now use the latest Gradio SDK versions (https://github.com/lastmile-ai/aiconfig/pull/1421) +- [update] Removed warning text from Gradio Notebooks docs saying that Gradio SDK needs to be `<= v4.16.0` because that issue is now resolved and we can now use the latest Gradio SDK versions (https://github.com/lastmile-ai/aiconfig/pull/1421) ## (2024-03-05) Python Version 1.1.29, NPM Version 1.1.13 diff --git a/python/pyproject.toml b/python/pyproject.toml index 2e3511e8e..451201ee9 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"] [project] name = "python-aiconfig" -version = "1.1.31" +version = "1.1.32" authors = [ { name="LastMile AI" }, { name="Sarmad Qadri", email="sarmad@lastmileai.dev" }, diff --git a/typescript/package.json b/typescript/package.json index b33e5c5bc..67851f4cf 100644 --- a/typescript/package.json +++ b/typescript/package.json @@ -1,6 +1,6 @@ { "name": "aiconfig", - "version": "1.1.14", + "version": "1.1.15", "description": "Library to help manage AI prompts, models and parameters using the .aiconfig file format.", "repository": { "type": "git",