Skip to content

Commit 348bcb1

Browse files
authored
Update version to 0.6.1 (#6631)
1 parent c99aa74 commit 348bcb1

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

.github/ISSUE_TEMPLATE/1-bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ body:
9090
multiple: false
9191
options:
9292
- "Python dev (main branch)"
93+
- "Python 0.6.1"
9394
- "Python 0.6.0"
9495
- "Python 0.5.7"
9596
- "Python 0.5.6"

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
[
3434
# For main use the workflow target
3535
{ ref: "${{github.ref}}", dest-dir: dev, uv-version: "0.5.13", sphinx-release-override: "dev" },
36-
{ ref: "python-v0.6.0", dest-dir: stable, uv-version: "0.5.13", sphinx-release-override: "stable" },
36+
{ ref: "python-v0.6.1", dest-dir: stable, uv-version: "0.5.13", sphinx-release-override: "stable" },
3737
{ ref: "v0.4.0.post1", dest-dir: "0.4.0", uv-version: "0.5.13", sphinx-release-override: "" },
3838
{ ref: "v0.4.1", dest-dir: "0.4.1", uv-version: "0.5.13", sphinx-release-override: "" },
3939
{ ref: "v0.4.2", dest-dir: "0.4.2", uv-version: "0.5.13", sphinx-release-override: "" },
@@ -51,7 +51,7 @@ jobs:
5151
{ ref: "python-v0.5.5", dest-dir: "0.5.5", uv-version: "0.5.13", sphinx-release-override: "" },
5252
{ ref: "python-v0.5.6", dest-dir: "0.5.6", uv-version: "0.5.13", sphinx-release-override: "" },
5353
{ ref: "python-v0.5.7", dest-dir: "0.5.7", uv-version: "0.5.13", sphinx-release-override: "" },
54-
{ ref: "python-v0.6.0", dest-dir: "0.6.0", uv-version: "0.5.13", sphinx-release-override: "" },
54+
{ ref: "python-v0.6.1", dest-dir: "0.6.1", uv-version: "0.5.13", sphinx-release-override: "" },
5555
]
5656
steps:
5757
- name: Checkout

docs/switcher.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "/autogen/dev/"
66
},
77
{
8-
"name": "0.6.0 (stable)",
8+
"name": "0.6.1 (stable)",
99
"version": "stable",
1010
"url": "/autogen/stable/",
1111
"preferred": true

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.6.0"
7+
version = "0.6.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.6.0",
18+
"autogen-core==0.6.1",
1919
]
2020

2121
[tool.ruff]

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.6.0"
7+
version = "0.6.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.6.0",
72+
"autogen_ext==0.6.1",
7373

7474
# Documentation tooling
7575
"diskcache",

python/packages/autogen-ext/pyproject.toml

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

55
[project]
66
name = "autogen-ext"
7-
version = "0.6.0"
7+
version = "0.6.1"
88
license = {file = "LICENSE-CODE"}
99
description = "AutoGen extensions library"
1010
readme = "README.md"
@@ -15,7 +15,7 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-core==0.6.0",
18+
"autogen-core==0.6.1",
1919
]
2020

2121
[project.optional-dependencies]
@@ -32,7 +32,7 @@ docker = ["docker~=7.0", "asyncio_atexit>=1.0.1"]
3232
ollama = ["ollama>=0.4.7", "tiktoken>=0.8.0"]
3333
openai = ["openai>=1.66.5", "tiktoken>=0.8.0", "aiofiles"]
3434
file-surfer = [
35-
"autogen-agentchat==0.6.0",
35+
"autogen-agentchat==0.6.1",
3636
"magika>=0.6.1rc2",
3737
"markitdown[all]~=0.1.0a3",
3838
]
@@ -44,21 +44,21 @@ llama-cpp = [
4444
graphrag = ["graphrag>=1.0.1"]
4545
chromadb = ["chromadb>=1.0.0"]
4646
web-surfer = [
47-
"autogen-agentchat==0.6.0",
47+
"autogen-agentchat==0.6.1",
4848
"playwright>=1.48.0",
4949
"pillow>=11.0.0",
5050
"magika>=0.6.1rc2",
5151
"markitdown[all]~=0.1.0a3",
5252
]
5353
magentic-one = [
54-
"autogen-agentchat==0.6.0",
54+
"autogen-agentchat==0.6.1",
5555
"magika>=0.6.1rc2",
5656
"markitdown[all]~=0.1.0a3",
5757
"playwright>=1.48.0",
5858
"pillow>=11.0.0",
5959
]
6060
video-surfer = [
61-
"autogen-agentchat==0.6.0",
61+
"autogen-agentchat==0.6.1",
6262
"opencv-python>=4.5",
6363
"ffmpeg-python",
6464
"openai-whisper",

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)