diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/package.json.template | 2 | ||||
-rw-r--r-- | templates/src/csharp/Grpc.Core/VersionInfo.cs.template | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/templates/package.json.template b/templates/package.json.template index ed4dca50e2..ec444976ed 100644 --- a/templates/package.json.template +++ b/templates/package.json.template @@ -2,7 +2,7 @@ --- | { "name": "grpc", - "version": "0.12.0", + "version": "${settings.node_version}", "author": "Google Inc.", "description": "gRPC Library for Node", "homepage": "http://www.grpc.io/", diff --git a/templates/src/csharp/Grpc.Core/VersionInfo.cs.template b/templates/src/csharp/Grpc.Core/VersionInfo.cs.template index 578f01f079..59864fa058 100644 --- a/templates/src/csharp/Grpc.Core/VersionInfo.cs.template +++ b/templates/src/csharp/Grpc.Core/VersionInfo.cs.template @@ -41,6 +41,11 @@ public static class VersionInfo { /// <summary> + /// Current version of gRPC C# assemblies + /// </summary> + public const string CurrentAssemblyVersion = "${settings.version.major}.${settings.version.minor}.${settings.version.patch}.0"; + + /// <summary> /// Current version of gRPC C# /// </summary> public const string CurrentVersion = "${settings.csharp_version}"; |