From 393feb7d38baf5b04189a165147ab65d0b4b0453 Mon Sep 17 00:00:00 2001 From: George Barnett Date: Thu, 10 Feb 2022 10:22:39 +0000 Subject: [PATCH] Bump version number to 1.7.0 (#1358) Motivation: We plan on tagging a release soon. Modifications: - Bump the version to 1.7.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 8ceeec6f6..53ea3cc2c 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 = 6 + internal static let minor = 7 /// The patch version. - internal static let patch = 1 + internal static let patch = 0 /// The version string. internal static let versionString = "\(major).\(minor).\(patch)"