From 5de212d05234fc26c5a6df81032a8e312584038b Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Tue, 11 Jun 2019 17:46:17 -0700 Subject: [PATCH] bump version number and changelog [ci skip] --- CHANGELOG.md | 2 ++ version/version.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ec71f1d..1cc59edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased + +## [1.2.1] - 2019-06-11 ### Added - support for legacy tokens to ease upgrade path, by [@bradrydzewski](https://github.com/bradrydzewski). [#2713](https://github.com/drone/drone/issues/2713). diff --git a/version/version.go b/version/version.go index 9f9c5c81..24ac097d 100644 --- a/version/version.go +++ b/version/version.go @@ -27,7 +27,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner. VersionMinor int64 = 2 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 + VersionPatch int64 = 1 // VersionPre indicates prerelease. VersionPre = "" // VersionDev indicates development branch. Releases will be empty string.