diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index 5ca3fa5449..3c9c2fc7ff 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [github-copilot-1.0.0] - 2026-07-23 + +### Added +- **agent-framework-github-copilot**: Forward input attachments (images, documents, and other inline binary content) to GitHub Copilot as inline blobs ([#7300](https://github.com/microsoft/agent-framework/pull/7300)) + +### Changed +- **agent-framework-github-copilot**: Promote the package from release candidate to stable + ## [hosting-a2a-1.0.0a260723] - 2026-07-23 ### Added diff --git a/python/PACKAGE_STATUS.md b/python/PACKAGE_STATUS.md index a7dfa47b90..9e8033c885 100644 --- a/python/PACKAGE_STATUS.md +++ b/python/PACKAGE_STATUS.md @@ -35,7 +35,7 @@ Status is grouped into these buckets: | `agent-framework-foundry-hosting` | `python/packages/foundry_hosting` | `beta` | | `agent-framework-foundry-local` | `python/packages/foundry_local` | `beta` | | `agent-framework-gemini` | `python/packages/gemini` | `beta` | -| `agent-framework-github-copilot` | `python/packages/github_copilot` | `rc` | +| `agent-framework-github-copilot` | `python/packages/github_copilot` | `released` | | `agent-framework-hosting` | `python/packages/hosting` | `alpha` | | `agent-framework-hosting-a2a` | `python/packages/hosting-a2a` | `alpha` | | `agent-framework-hosting-mcp` | `python/packages/hosting-mcp` | `alpha` | diff --git a/python/packages/github_copilot/README.md b/python/packages/github_copilot/README.md index 36cb11a949..4d07cabcb8 100644 --- a/python/packages/github_copilot/README.md +++ b/python/packages/github_copilot/README.md @@ -3,7 +3,7 @@ Please install this package via pip: ```bash -pip install agent-framework-github-copilot --pre +pip install agent-framework-github-copilot ``` ## GitHub Copilot Agent diff --git a/python/packages/github_copilot/pyproject.toml b/python/packages/github_copilot/pyproject.toml index c57564a845..756c231adc 100644 --- a/python/packages/github_copilot/pyproject.toml +++ b/python/packages/github_copilot/pyproject.toml @@ -4,7 +4,7 @@ description = "GitHub Copilot integration for Microsoft Agent Framework." authors = [{ name = "Microsoft", email = "af-support@microsoft.com"}] readme = "README.md" requires-python = ">=3.10" -version = "1.0.0rc4" +version = "1.0.0" license-files = ["LICENSE"] urls.homepage = "https://aka.ms/agent-framework" urls.source = "https://github.com/microsoft/agent-framework/tree/main/python" @@ -12,7 +12,7 @@ urls.release_notes = "https://github.com/microsoft/agent-framework/releases?q=ta urls.issues = "https://github.com/microsoft/agent-framework/issues" classifiers = [ "License :: OSI Approved :: MIT License", - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", diff --git a/python/samples/02-agents/providers/github_copilot/README.md b/python/samples/02-agents/providers/github_copilot/README.md index d58698e7da..476f614b85 100644 --- a/python/samples/02-agents/providers/github_copilot/README.md +++ b/python/samples/02-agents/providers/github_copilot/README.md @@ -10,7 +10,7 @@ This directory contains examples demonstrating how to use the `GitHubCopilotAgen 2. **GitHub Copilot Subscription**: An active GitHub Copilot subscription 3. **Install the package**: ```bash - pip install agent-framework-github-copilot --pre + pip install agent-framework-github-copilot ``` ## Environment Variables diff --git a/python/uv.lock b/python/uv.lock index 304fe7c421..7a8effc063 100644 --- a/python/uv.lock +++ b/python/uv.lock @@ -668,7 +668,7 @@ requires-dist = [ [[package]] name = "agent-framework-github-copilot" -version = "1.0.0rc4" +version = "1.0.0" source = { editable = "packages/github_copilot" } dependencies = [ { name = "agent-framework-core", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32'" },