From d72b8edef62cd571554a2006ac24bddd3835e665 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Fri, 9 Oct 2020 10:08:21 -0700 Subject: [PATCH] version: bump to 0.10.0-beta --- release_notes.md | 2 +- version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release_notes.md b/release_notes.md index dd26ac6..895d140 100644 --- a/release_notes.md +++ b/release_notes.md @@ -9,7 +9,7 @@ This file tracks release notes for the loop client. * All of the items under the "Next Release" heading should be included in the release notes. * As part of the PR that bumps the client version, the "Next Release" heading should be replaced with the release version including the changes. -## Next Release +## 0.10.0 #### New Features diff --git a/version.go b/version.go index fc2bfd8..cb119b1 100644 --- a/version.go +++ b/version.go @@ -23,7 +23,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( // Note: please update release_notes.md when you change these values. appMajor uint = 0 - appMinor uint = 9 + appMinor uint = 10 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per