From 02ff057bc03a2c5af20d04e4bcd31244e40fe8c5 Mon Sep 17 00:00:00 2001 From: George Barnett Date: Wed, 1 Nov 2023 14:47:47 +0000 Subject: [PATCH] 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. --- Sources/GRPC/Version.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/GRPC/Version.swift b/Sources/GRPC/Version.swift index 1763b2205..57665669a 100644 --- a/Sources/GRPC/Version.swift +++ b/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)"