Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 2.54.0-dev (on master branch) #2096

Merged
merged 2 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/version.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<PropertyGroup>

<!-- package version of grpc-dotnet -->
<GrpcDotnetVersion>2.53.0-dev</GrpcDotnetVersion>
<GrpcDotnetVersion>2.54.0-dev</GrpcDotnetVersion>

<!-- assembly version of grpc-dotnet -->
<GrpcDotnetAssemblyVersion>2.0.0.0</GrpcDotnetAssemblyVersion>

<!-- file version of all grpc-dotnet -->
<GrpcDotnetAssemblyFileVersion>2.53.0.0</GrpcDotnetAssemblyFileVersion>
<GrpcDotnetAssemblyFileVersion>2.54.0.0</GrpcDotnetAssemblyFileVersion>

</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions src/Grpc.Core.Api/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public static class VersionInfo
/// <summary>
/// Current <c>AssemblyFileVersion</c> of gRPC C# assemblies
/// </summary>
public const string CurrentAssemblyFileVersion = "2.53.0.0";
public const string CurrentAssemblyFileVersion = "2.54.0.0";

/// <summary>
/// Current version of gRPC C#
/// </summary>
public const string CurrentVersion = "2.53.0-dev";
public const string CurrentVersion = "2.54.0-dev";
}