Browse Source

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 year ago
parent
commit
3ef3a9f42a
1 changed files with 2 additions and 2 deletions
  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)"