Skip to content

Commit 9e1b3c9

Browse files
authored
Python: .NET: Updated package version and small fix (#1911)
* Removed public key * Updated package version * Updated Python package versions
1 parent 8b4aa1e commit 9e1b3c9

File tree

15 files changed

+60
-27
lines changed

15 files changed

+60
-27
lines changed

dotnet/nuget/nuget-package.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<PropertyGroup>
33
<!-- Central version prefix - applies to all nuget packages. -->
44
<VersionPrefix>1.0.0</VersionPrefix>
5-
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix).251028.1</PackageVersion>
6-
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)-preview.251028.1</PackageVersion>
7-
<GitTag>1.0.0-preview.251028.1</GitTag>
5+
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix).251104.1</PackageVersion>
6+
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)-preview.251104.1</PackageVersion>
7+
<GitTag>1.0.0-preview.251104.1</GitTag>
88

99
<Configurations>Debug;Release;Publish</Configurations>
1010
<IsPackable>true</IsPackable>

dotnet/src/Microsoft.Agents.AI/Microsoft.Agents.AI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<ItemGroup>
3434
<InternalsVisibleTo Include="Microsoft.Agents.AI.UnitTests" />
35-
<InternalsVisibleTo Include="DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7"/>
35+
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
3636
</ItemGroup>
3737

3838
</Project>

python/CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0b251104] - 2025-11-04
11+
12+
### Added
13+
14+
- Introducing the Anthropic Client ([#1819](https://github.com/microsoft/agent-framework/pull/1819))
15+
16+
### Changed
17+
18+
- [BREAKING] Consolidate workflow run APIs ([#1723](https://github.com/microsoft/agent-framework/pull/1723))
19+
- [BREAKING] Remove request_type param from ctx.request_info() ([#1824](https://github.com/microsoft/agent-framework/pull/1824))
20+
- [BREAKING] Cleanup of dependencies ([#1803](https://github.com/microsoft/agent-framework/pull/1803))
21+
- [BREAKING] Replace `RequestInfoExecutor` with `request_info` API and `@response_handler` ([#1466](https://github.com/microsoft/agent-framework/pull/1466))
22+
- Azure AI Search Support Update + Refactored Samples & Unit Tests ([#1683](https://github.com/microsoft/agent-framework/pull/1683))
23+
- Lab: Updates to GAIA module ([#1763](https://github.com/microsoft/agent-framework/pull/1763))
24+
25+
### Fixed
26+
27+
- Azure AI `top_p` and `temperature` parameters fix ([#1839](https://github.com/microsoft/agent-framework/pull/1839))
28+
- Ensure agent thread is part of checkpoint ([#1756](https://github.com/microsoft/agent-framework/pull/1756))
29+
- Fix middleware and cleanup confusing function ([#1865](https://github.com/microsoft/agent-framework/pull/1865))
30+
- Fix type compatibility check ([#1753](https://github.com/microsoft/agent-framework/pull/1753))
31+
1032
## [1.0.0b251028] - 2025-10-28
1133

1234
### Added
@@ -124,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
124146

125147
For more information, see the [announcement blog post](https://devblogs.microsoft.com/foundry/introducing-microsoft-agent-framework-the-open-source-engine-for-agentic-ai-apps/).
126148

127-
[Unreleased]: https://github.com/microsoft/agent-framework/compare/python-1.0.0b251028...HEAD
149+
[Unreleased]: https://github.com/microsoft/agent-framework/compare/python-1.0.0b251104...HEAD
150+
[1.0.0b251104]: https://github.com/microsoft/agent-framework/compare/python-1.0.0b251028...python-1.0.0b251104
128151
[1.0.0b251028]: https://github.com/microsoft/agent-framework/compare/python-1.0.0b251016...python-1.0.0b251028
129152
[1.0.0b251016]: https://github.com/microsoft/agent-framework/compare/python-1.0.0b251007...python-1.0.0b251016
130153
[1.0.0b251007]: https://github.com/microsoft/agent-framework/compare/python-1.0.0b251001...python-1.0.0b251007

python/packages/a2a/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A2A integration for Microsoft Agent Framework."
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://aka.ms/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

python/packages/anthropic/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Anthropic integration for Microsoft Agent Framework."
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://aka.ms/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

python/packages/azure-ai/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Azure AI Foundry integration for Microsoft Agent Framework."
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://aka.ms/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

python/packages/copilotstudio/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Copilot Studio integration for Microsoft Agent Framework."
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://aka.ms/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

python/packages/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Microsoft Agent Framework for building AI Agents with Python. Thi
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://aka.ms/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

python/packages/devui/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Debug UI for Microsoft Agent Framework with OpenAI-compatible API
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://github.com/microsoft/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

python/packages/lab/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Experimental modules for Microsoft Agent Framework"
44
authors = [{ name = "Microsoft", email = "[email protected]"}]
55
readme = "README.md"
66
requires-python = ">=3.10"
7-
version = "1.0.0b251028"
7+
version = "1.0.0b251104"
88
license-files = ["LICENSE"]
99
urls.homepage = "https://aka.ms/agent-framework"
1010
urls.source = "https://github.com/microsoft/agent-framework/tree/main/python"

0 commit comments

Comments
 (0)