Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[March 18, 2024] CHANGELOG and version updates #1468

Merged
merged 1 commit into from
Mar 18, 2024
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
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading