Compare commits

..

1 commit

Author SHA1 Message Date
Eoin McAfee
b7b04a555a release prep for v2.12.2 2022-06-15 10:18:04 +01:00
4 changed files with 11 additions and 7 deletions

View file

@ -4,9 +4,9 @@ Bugs or Issues? Please create a new topic in our Discourse forum.
We are migrating all Drone repositories to Discourse for bug tracking.
New GitHub issues may be automatically deleted.
https://community.harness.io/
https://community.harness.io/c/bugs/17
https://community.harness.io/c/ideas/11
https://discourse.drone.io/
https://discourse.drone.io/c/bugs
https://discourse.drone.io/c/ideas
Failing Builds? Please do not use GitHub issues for generic support
questions. Instead please use Stack Overflow:

View file

@ -1,8 +1,8 @@
# Changelog
## [v2.12.1](https://github.com/harness/drone/tree/v2.12.1) (2022-06-15)
## [v2.12.2](https://github.com/harness/drone/tree/v2.12.2) (2022-06-15)
[Full Changelog](https://github.com/harness/drone/compare/v2.12.0...v2.12.1)
[Full Changelog](https://github.com/harness/drone/compare/v2.12.1...v2.12.2)
**Fixed bugs:**
@ -18,6 +18,10 @@
- \(bug\) add unit test for comments in template file [\#3221](https://github.com/harness/drone/pull/3221) ([eoinmcafee00](https://github.com/eoinmcafee00))
- Bump scm version to v1.24.0 [\#3219](https://github.com/harness/drone/pull/3219) ([kit101](https://github.com/kit101))
## [v2.12.1](https://github.com/harness/drone/tree/v2.12.1) (2022-05-16)
[Full Changelog](https://github.com/harness/drone/compare/v2.12.0...v2.12.1)
## [v2.12.0](https://github.com/harness/drone/tree/v2.12.0) (2022-05-16)
[Full Changelog](https://github.com/harness/drone/compare/v2.11.1...v2.12.0)

View file

@ -27,7 +27,7 @@ var (
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 12
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 1
VersionPatch int64 = 2
// VersionPre indicates prerelease.
VersionPre = ""
// VersionDev indicates development branch. Releases will be empty string.

View file

@ -10,7 +10,7 @@ package version
import "testing"
func TestVersion(t *testing.T) {
if got, want := Version.String(), "2.12.1"; got != want {
if got, want := Version.String(), "2.12.2"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}