diff options
author | Mehrdad Afshari <mehrdada@users.noreply.github.com> | 2018-01-24 14:58:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-24 14:58:26 -0800 |
commit | 167113f420337353888e7aa7b6337087529fad90 (patch) | |
tree | ee4b3e105ec221bf6a58704d73daad12fee9d681 /src/csharp | |
parent | d782314d7e89809800f0cae1afa7d276564cf706 (diff) | |
parent | 2dc3b1eb55acc277f7d8c4416f0fa92b98496990 (diff) |
Merge pull request #14114 from jtattermusch/bump_190_pre2
1.9.0-pre1 is now 1.9.0-pre2
Diffstat (limited to 'src/csharp')
-rwxr-xr-x | src/csharp/Grpc.Core/Version.csproj.include | 2 | ||||
-rw-r--r-- | src/csharp/Grpc.Core/VersionInfo.cs | 2 | ||||
-rwxr-xr-x | src/csharp/build_packages_dotnetcli.bat | 2 | ||||
-rwxr-xr-x | src/csharp/build_packages_dotnetcli.sh | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/csharp/Grpc.Core/Version.csproj.include b/src/csharp/Grpc.Core/Version.csproj.include index 3c08a6d5fe..f653ad5f8b 100755 --- a/src/csharp/Grpc.Core/Version.csproj.include +++ b/src/csharp/Grpc.Core/Version.csproj.include @@ -1,7 +1,7 @@ <!-- This file is generated --> <Project> <PropertyGroup> - <GrpcCsharpVersion>1.9.0-pre1</GrpcCsharpVersion> + <GrpcCsharpVersion>1.9.0-pre2</GrpcCsharpVersion> <GoogleProtobufVersion>3.3.0</GoogleProtobufVersion> </PropertyGroup> </Project> diff --git a/src/csharp/Grpc.Core/VersionInfo.cs b/src/csharp/Grpc.Core/VersionInfo.cs index fe191306f8..d29855d87e 100644 --- a/src/csharp/Grpc.Core/VersionInfo.cs +++ b/src/csharp/Grpc.Core/VersionInfo.cs @@ -38,6 +38,6 @@ namespace Grpc.Core /// <summary> /// Current version of gRPC C# /// </summary> - public const string CurrentVersion = "1.9.0-pre1"; + public const string CurrentVersion = "1.9.0-pre2"; } } diff --git a/src/csharp/build_packages_dotnetcli.bat b/src/csharp/build_packages_dotnetcli.bat index 212aa8caec..f396bb5d88 100755 --- a/src/csharp/build_packages_dotnetcli.bat +++ b/src/csharp/build_packages_dotnetcli.bat @@ -13,7 +13,7 @@ @rem limitations under the License. @rem Current package versions -set VERSION=1.9.0-pre1 +set VERSION=1.9.0-pre2 @rem Adjust the location of nuget.exe set NUGET=C:\nuget\nuget.exe diff --git a/src/csharp/build_packages_dotnetcli.sh b/src/csharp/build_packages_dotnetcli.sh index 64b3c16c72..ddd12a7a5f 100755 --- a/src/csharp/build_packages_dotnetcli.sh +++ b/src/csharp/build_packages_dotnetcli.sh @@ -39,7 +39,7 @@ dotnet pack --configuration Release Grpc.Auth --output ../../../artifacts dotnet pack --configuration Release Grpc.HealthCheck --output ../../../artifacts dotnet pack --configuration Release Grpc.Reflection --output ../../../artifacts -nuget pack Grpc.nuspec -Version "1.9.0-pre1" -OutputDirectory ../../artifacts -nuget pack Grpc.Tools.nuspec -Version "1.9.0-pre1" -OutputDirectory ../../artifacts +nuget pack Grpc.nuspec -Version "1.9.0-pre2" -OutputDirectory ../../artifacts +nuget pack Grpc.Tools.nuspec -Version "1.9.0-pre2" -OutputDirectory ../../artifacts (cd ../../artifacts && zip csharp_nugets_dotnetcli.zip *.nupkg) |