Increment version after release#1950
Increment version after release#1950azure-sdk wants to merge 1 commit intomicrosoft:release/azure/1.xfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates Azure MCP Server’s package version and initializes a new top-of-file “Unreleased” section in the server changelog to begin the next development cycle after a release.
Changes:
- Bump
Azure.Mcp.Serverpackage version inAzure.Mcp.Server.csproj. - Add a new
(Unreleased)section toservers/Azure.Mcp.Server/CHANGELOG.md.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| servers/Azure.Mcp.Server/src/Azure.Mcp.Server.csproj | Updates the package <Version> value. |
| servers/Azure.Mcp.Server/CHANGELOG.md | Adds a new “Unreleased” section for the next version. |
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <Version>1.0.2-beta.1</Version> | ||
| <Version>1.0.2-beta.2</Version> |
There was a problem hiding this comment.
After releasing 1.0.2, setting the project version to 1.0.2-beta.2 is a SemVer regression relative to the released 1.0.2 (pre-release versions sort lower than the corresponding stable). If this is meant to be the next development version post-release, bump to the next patch/minor (e.g., 1.0.3-beta.1) rather than another 1.0.2-* pre-release.
| <Version>1.0.2-beta.2</Version> | |
| <Version>1.0.3-beta.1</Version> |
|
|
||
| The Azure MCP Server updates automatically by default whenever a new release comes out 🚀. We ship updates twice a week on Tuesdays and Thursdays 😊 | ||
|
|
||
| ## 1.0.2-beta.2 (Unreleased) |
There was a problem hiding this comment.
The new Unreleased section is labeled 1.0.2-beta.2, but 1.0.2 is already released below. If this section represents post-1.0.2 development, the heading should be the next version (e.g., 1.0.3-beta.1) to avoid a prerelease version that is ordered lower than the released stable.
| ## 1.0.2-beta.2 (Unreleased) | |
| ## 1.0.3-beta.1 (Unreleased) |
Increment package version after release