From fb125565cec994179bbc989500f83724a6f9316e Mon Sep 17 00:00:00 2001 From: David May <1301201+wass3r@users.noreply.github.com> Date: Thu, 28 Apr 2022 19:42:18 +0000 Subject: [PATCH] fix(version): bump to 0.13 (#163) --- version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version/version.go b/version/version.go index 80589b4..77ad4aa 100644 --- a/version/version.go +++ b/version/version.go @@ -10,9 +10,9 @@ var ( // VersionMajor is for an API incompatible changes. VersionMajor int64 // VersionMinor is for functionality in a backwards-compatible manner. - VersionMinor int64 = 12 + VersionMinor int64 = 13 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 + VersionPatch int64 = 1 ) // Version is the specification version that the package types support.