소스 검색

Bump version number to 1.24.0 (#2088)

Motivation:

We plan on tagging a release soon.

Modifications:

- Bump the version to 1.24.0

Result:

The version in the default user-agent string will match the released
version.
George Barnett 1 년 전
부모
커밋
3ef3a9f42a
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 = 23
+  internal static let minor = 24
 
   /// The patch version.
-  internal static let patch = 1
+  internal static let patch = 0
 
   /// The version string.
   internal static let versionString = "\(major).\(minor).\(patch)"