From 91ec6113384276e6e260e8ef19720ff332459a23 Mon Sep 17 00:00:00 2001 From: Jack Gerrits Date: Mon, 13 Jan 2025 16:22:03 -0500 Subject: [PATCH] Update version to 0.4.1 (#5029) * Update version to 0.4.1 * lock * dest dir * remove website changes --- docs/switcher.json | 7 ++++++- python/packages/autogen-agentchat/pyproject.toml | 4 ++-- python/packages/autogen-core/docs/src/index.md | 4 ++-- .../user-guide/agentchat-user-guide/installation.md | 2 +- .../src/user-guide/core-user-guide/installation.md | 4 ++-- python/packages/autogen-core/pyproject.toml | 4 ++-- python/packages/autogen-ext/pyproject.toml | 10 +++++----- python/packages/magentic-one-cli/pyproject.toml | 6 +++--- python/samples/agentchat_chainlit/requirements.txt | 2 +- python/uv.lock | 6 +++--- 10 files changed, 27 insertions(+), 22 deletions(-) diff --git a/docs/switcher.json b/docs/switcher.json index f90f52ef0847..ab4e1d2e5c75 100644 --- a/docs/switcher.json +++ b/docs/switcher.json @@ -1,6 +1,6 @@ [ { - "name": "0.4.0 (stable)", + "name": "0.4.1 (stable)", "version": "stable", "url": "/autogen/stable/", "preferred": true @@ -15,6 +15,11 @@ "version": "0.2", "url": "/autogen/0.2/" }, + { + "name": "0.4.0", + "version": "0.4.0", + "url": "/autogen/0.4.0/" + }, { "name": "0.4.0.dev0", "version": "0.4.0.dev0", diff --git a/python/packages/autogen-agentchat/pyproject.toml b/python/packages/autogen-agentchat/pyproject.toml index 2aad2d35b1b7..8e9329f0d49a 100644 --- a/python/packages/autogen-agentchat/pyproject.toml +++ b/python/packages/autogen-agentchat/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "autogen-agentchat" -version = "0.4.0" +version = "0.4.1" license = {file = "LICENSE-CODE"} description = "AutoGen agents and teams library" readme = "README.md" @@ -15,7 +15,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "autogen-core==0.4.0", + "autogen-core==0.4.1", "aioconsole>=0.8.1" ] diff --git a/python/packages/autogen-core/docs/src/index.md b/python/packages/autogen-core/docs/src/index.md index f19fd42490c3..1f13cc8dc237 100644 --- a/python/packages/autogen-core/docs/src/index.md +++ b/python/packages/autogen-core/docs/src/index.md @@ -60,7 +60,7 @@ A console-based multi-agent assistant for web and file-based tasks. Built on AgentChat. ```bash -pip install magentic-one-cli +pip install -U magentic-one-cli m1 "Find flights from Seattle to Paris and format the result in a table" ``` @@ -83,7 +83,7 @@ An app for prototyping and managing agents without writing code. Built on AgentChat. ```bash -pip install autogenstudio +pip install -U autogenstudio autogenstudio ui --port 8080 --appdir ./myapp ``` diff --git a/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/installation.md b/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/installation.md index e4e49591df95..ed47a8114037 100644 --- a/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/installation.md +++ b/python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/installation.md @@ -80,5 +80,5 @@ pip install "autogen-ext[openai]" If you are using Azure OpenAI with AAD authentication, you need to install the following: ```bash -pip install "autogen-ext[azure]==0.4.0.dev13" +pip install "autogen-ext[azure]" ``` diff --git a/python/packages/autogen-core/docs/src/user-guide/core-user-guide/installation.md b/python/packages/autogen-core/docs/src/user-guide/core-user-guide/installation.md index 3fd181c7feeb..1b53cfb2f466 100644 --- a/python/packages/autogen-core/docs/src/user-guide/core-user-guide/installation.md +++ b/python/packages/autogen-core/docs/src/user-guide/core-user-guide/installation.md @@ -67,13 +67,13 @@ To use the OpenAI and Azure OpenAI models, you need to install the following extensions: ```bash -pip install "autogen-ext[openai]==0.4.0.dev13" +pip install "autogen-ext[openai]" ``` If you are using Azure OpenAI with AAD authentication, you need to install the following: ```bash -pip install "autogen-ext[azure]==0.4.0.dev13" +pip install "autogen-ext[azure]" ``` ## Install Docker for Code Execution (Optional) diff --git a/python/packages/autogen-core/pyproject.toml b/python/packages/autogen-core/pyproject.toml index 4d6aa4ba6410..27269f2e1c3b 100644 --- a/python/packages/autogen-core/pyproject.toml +++ b/python/packages/autogen-core/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "autogen-core" -version = "0.4.0" +version = "0.4.1" license = {file = "LICENSE-CODE"} description = "Foundational interfaces and agent runtime implementation for AutoGen" readme = "README.md" @@ -69,7 +69,7 @@ dev = [ "pygments", "sphinxext-rediraffe", - "autogen_ext==0.4.0", + "autogen_ext==0.4.1", # Documentation tooling "sphinx-autobuild", diff --git a/python/packages/autogen-ext/pyproject.toml b/python/packages/autogen-ext/pyproject.toml index a2ace335f172..45e06015bd27 100644 --- a/python/packages/autogen-ext/pyproject.toml +++ b/python/packages/autogen-ext/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "autogen-core==0.4.0", + "autogen-core==0.4.1", ] [project.optional-dependencies] @@ -24,23 +24,23 @@ azure = ["azure-core", "azure-identity"] docker = ["docker~=7.0"] openai = ["openai>=1.52.2", "tiktoken>=0.8.0", "aiofiles"] file-surfer = [ - "autogen-agentchat==0.4.0", + "autogen-agentchat==0.4.1", "markitdown>=0.0.1a2", ] web-surfer = [ - "autogen-agentchat==0.4.0", + "autogen-agentchat==0.4.1", "playwright>=1.48.0", "pillow>=11.0.0", "markitdown>=0.0.1a2", ] magentic-one = [ - "autogen-agentchat==0.4.0", + "autogen-agentchat==0.4.1", "markitdown>=0.0.1a2", "playwright>=1.48.0", "pillow>=11.0.0", ] video-surfer = [ - "autogen-agentchat==0.4.0", + "autogen-agentchat==0.4.1", "opencv-python>=4.5", "ffmpeg-python", "openai-whisper", diff --git a/python/packages/magentic-one-cli/pyproject.toml b/python/packages/magentic-one-cli/pyproject.toml index 5b14ed6f73d7..79ce1075c6a3 100644 --- a/python/packages/magentic-one-cli/pyproject.toml +++ b/python/packages/magentic-one-cli/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "magentic-one-cli" -version = "0.2.0" +version = "0.2.1" license = {file = "LICENSE-CODE"} description = "Magentic-One is a generalist multi-agent system, built on `AutoGen-AgentChat`, for solving complex web and file-based tasks. This package installs the `m1` command-line utility to quickly get started with Magentic-One." readme = "README.md" @@ -15,8 +15,8 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "autogen-agentchat>=0.4.0,<0.5", - "autogen-ext[openai,magentic-one]>=0.4.0,<0.5", + "autogen-agentchat>=0.4.1,<0.5", + "autogen-ext[openai,magentic-one]>=0.4.1,<0.5", ] [project.scripts] diff --git a/python/samples/agentchat_chainlit/requirements.txt b/python/samples/agentchat_chainlit/requirements.txt index db122ba31ce4..a73d6abbe443 100644 --- a/python/samples/agentchat_chainlit/requirements.txt +++ b/python/samples/agentchat_chainlit/requirements.txt @@ -1,2 +1,2 @@ chainlit -autogen-agentchat==0.4.0 +autogen-agentchat>=0.4.1,<0.5 diff --git a/python/uv.lock b/python/uv.lock index 156a298cc262..1fc0c3229c37 100644 --- a/python/uv.lock +++ b/python/uv.lock @@ -347,7 +347,7 @@ wheels = [ [[package]] name = "autogen-agentchat" -version = "0.4.0" +version = "0.4.1" source = { editable = "packages/autogen-agentchat" } dependencies = [ { name = "aioconsole" }, @@ -362,7 +362,7 @@ requires-dist = [ [[package]] name = "autogen-core" -version = "0.4.0" +version = "0.4.1" source = { editable = "packages/autogen-core" } dependencies = [ { name = "jsonref" }, @@ -2470,7 +2470,7 @@ wheels = [ [[package]] name = "magentic-one-cli" -version = "0.2.0" +version = "0.2.1" source = { editable = "packages/magentic-one-cli" } dependencies = [ { name = "autogen-agentchat" },