Skip to content

Commit 91ec611

Browse files
authored
Update version to 0.4.1 (#5029)
* Update version to 0.4.1 * lock * dest dir * remove website changes
1 parent 404522b commit 91ec611

File tree

10 files changed

+27
-22
lines changed

10 files changed

+27
-22
lines changed

docs/switcher.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"name": "0.4.0 (stable)",
3+
"name": "0.4.1 (stable)",
44
"version": "stable",
55
"url": "/autogen/stable/",
66
"preferred": true
@@ -15,6 +15,11 @@
1515
"version": "0.2",
1616
"url": "/autogen/0.2/"
1717
},
18+
{
19+
"name": "0.4.0",
20+
"version": "0.4.0",
21+
"url": "/autogen/0.4.0/"
22+
},
1823
{
1924
"name": "0.4.0.dev0",
2025
"version": "0.4.0.dev0",

python/packages/autogen-agentchat/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "autogen-agentchat"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
license = {file = "LICENSE-CODE"}
99
description = "AutoGen agents and teams library"
1010
readme = "README.md"
@@ -15,7 +15,7 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-core==0.4.0",
18+
"autogen-core==0.4.1",
1919
"aioconsole>=0.8.1"
2020
]
2121

python/packages/autogen-core/docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ A console-based multi-agent assistant for web and file-based tasks.
6060
Built on AgentChat.
6161

6262
```bash
63-
pip install magentic-one-cli
63+
pip install -U magentic-one-cli
6464
m1 "Find flights from Seattle to Paris and format the result in a table"
6565
```
6666

@@ -83,7 +83,7 @@ An app for prototyping and managing agents without writing code.
8383
Built on AgentChat.
8484

8585
```bash
86-
pip install autogenstudio
86+
pip install -U autogenstudio
8787
autogenstudio ui --port 8080 --appdir ./myapp
8888
```
8989

python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ pip install "autogen-ext[openai]"
8080
If you are using Azure OpenAI with AAD authentication, you need to install the following:
8181

8282
```bash
83-
pip install "autogen-ext[azure]==0.4.0.dev13"
83+
pip install "autogen-ext[azure]"
8484
```

python/packages/autogen-core/docs/src/user-guide/core-user-guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ To use the OpenAI and Azure OpenAI models, you need to install the following
6767
extensions:
6868

6969
```bash
70-
pip install "autogen-ext[openai]==0.4.0.dev13"
70+
pip install "autogen-ext[openai]"
7171
```
7272

7373
If you are using Azure OpenAI with AAD authentication, you need to install the following:
7474

7575
```bash
76-
pip install "autogen-ext[azure]==0.4.0.dev13"
76+
pip install "autogen-ext[azure]"
7777
```
7878

7979
## Install Docker for Code Execution (Optional)

python/packages/autogen-core/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "autogen-core"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
license = {file = "LICENSE-CODE"}
99
description = "Foundational interfaces and agent runtime implementation for AutoGen"
1010
readme = "README.md"
@@ -69,7 +69,7 @@ dev = [
6969
"pygments",
7070
"sphinxext-rediraffe",
7171

72-
"autogen_ext==0.4.0",
72+
"autogen_ext==0.4.1",
7373

7474
# Documentation tooling
7575
"sphinx-autobuild",

python/packages/autogen-ext/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-core==0.4.0",
18+
"autogen-core==0.4.1",
1919
]
2020

2121
[project.optional-dependencies]
@@ -24,23 +24,23 @@ azure = ["azure-core", "azure-identity"]
2424
docker = ["docker~=7.0"]
2525
openai = ["openai>=1.52.2", "tiktoken>=0.8.0", "aiofiles"]
2626
file-surfer = [
27-
"autogen-agentchat==0.4.0",
27+
"autogen-agentchat==0.4.1",
2828
"markitdown>=0.0.1a2",
2929
]
3030
web-surfer = [
31-
"autogen-agentchat==0.4.0",
31+
"autogen-agentchat==0.4.1",
3232
"playwright>=1.48.0",
3333
"pillow>=11.0.0",
3434
"markitdown>=0.0.1a2",
3535
]
3636
magentic-one = [
37-
"autogen-agentchat==0.4.0",
37+
"autogen-agentchat==0.4.1",
3838
"markitdown>=0.0.1a2",
3939
"playwright>=1.48.0",
4040
"pillow>=11.0.0",
4141
]
4242
video-surfer = [
43-
"autogen-agentchat==0.4.0",
43+
"autogen-agentchat==0.4.1",
4444
"opencv-python>=4.5",
4545
"ffmpeg-python",
4646
"openai-whisper",

python/packages/magentic-one-cli/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "magentic-one-cli"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
license = {file = "LICENSE-CODE"}
99
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."
1010
readme = "README.md"
@@ -15,8 +15,8 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-agentchat>=0.4.0,<0.5",
19-
"autogen-ext[openai,magentic-one]>=0.4.0,<0.5",
18+
"autogen-agentchat>=0.4.1,<0.5",
19+
"autogen-ext[openai,magentic-one]>=0.4.1,<0.5",
2020
]
2121

2222
[project.scripts]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
chainlit
2-
autogen-agentchat==0.4.0
2+
autogen-agentchat>=0.4.1,<0.5

python/uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)