aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-02-08 17:22:01 -0800
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-02-08 17:22:01 -0800
commit0618f272c07f73c524583f7f3e54ee586b983b86 (patch)
tree62dddd56d422e43df0de43ea21d717ce6f5a8dae /templates
parent32454cfbfcdb8125cae9f6b44e2589e590b0620b (diff)
parent1935c3655c3cb92ac31c802fc613392888cb3482 (diff)
Merge pull request #5144 from nicolasnoble/master-is-14
Flagging master's version properly.
Diffstat (limited to 'templates')
-rw-r--r--templates/package.json.template2
-rw-r--r--templates/src/csharp/Grpc.Core/VersionInfo.cs.template5
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}";