浏览代码

Bump version number to 1.20.0 (#1701)

Motivation:

We plan on tagging a release soon.

Modifications:

- Bump the version to 1.20.0

Result:

The version in the default user-agent string will match the released
version.
George Barnett 2 年之前
父节点
当前提交
02ff057bc0
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Sources/GRPC/Version.swift

+ 2 - 2
Sources/GRPC/Version.swift

@@ -19,10 +19,10 @@ internal enum Version {
   internal static let major = 1
 
   /// The minor version.
-  internal static let minor = 19
+  internal static let minor = 20
 
   /// The patch version.
-  internal static let patch = 1
+  internal static let patch = 0
 
   /// The version string.
   internal static let versionString = "\(major).\(minor).\(patch)"