From 1d968f50cfa267723d48d6e303f8b29a824c4506 Mon Sep 17 00:00:00 2001 From: George Barnett Date: Wed, 29 Sep 2021 15:03:44 +0100 Subject: [PATCH] Bump version number to 1.4.2 (#1280) Motivation: We plan on tagging a release soon. Modifications: - Bump the version to 1.4.2 - Add a commit template for version bumps, because the commit is always the same (unless I'm adding a commit template as well). Result: The version in the default user-agent string will match the released version. --- Sources/GRPC/Version.swift | 2 +- dev/version-bump.commit.template | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 dev/version-bump.commit.template diff --git a/Sources/GRPC/Version.swift b/Sources/GRPC/Version.swift index f5faf7ca7..7b0531b57 100644 --- a/Sources/GRPC/Version.swift +++ b/Sources/GRPC/Version.swift @@ -22,7 +22,7 @@ internal enum Version { internal static let minor = 4 /// The patch version. - internal static let patch = 1 + internal static let patch = 2 /// The version string. internal static let versionString = "\(major).\(minor).\(patch)" diff --git a/dev/version-bump.commit.template b/dev/version-bump.commit.template new file mode 100644 index 000000000..d49a17b2d --- /dev/null +++ b/dev/version-bump.commit.template @@ -0,0 +1,14 @@ +Bump version number to VERSION + +Motivation: + +We plan on tagging a release soon. + +Modifications: + +- Bump the version to VERSION + +Result: + +The version in the default user-agent string will match the released +version.