release v2.7.0
update changelog
This commit is contained in:
parent
50c8911f2a
commit
abe1824354
3 changed files with 19 additions and 2 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,5 +1,17 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v2.7.0](https://github.com/harness/drone/tree/v2.7.0) (2021-12-15)
|
||||||
|
|
||||||
|
[Full Changelog](https://github.com/harness/drone/compare/v2.6.0...v2.7.0)
|
||||||
|
|
||||||
|
**Implemented enhancements:**
|
||||||
|
|
||||||
|
- bump UI to v2.4.1 [\#3167](https://github.com/harness/drone/pull/3167) ([d1wilko](https://github.com/d1wilko))
|
||||||
|
|
||||||
|
**Fixed bugs:**
|
||||||
|
|
||||||
|
- \(DRON-157\) use deploy string in deployment [\#3165](https://github.com/harness/drone/pull/3165) ([tphoney](https://github.com/tphoney))
|
||||||
|
|
||||||
## [v2.6.0](https://github.com/harness/drone/tree/v2.6.0) (2021-11-30)
|
## [v2.6.0](https://github.com/harness/drone/tree/v2.6.0) (2021-11-30)
|
||||||
|
|
||||||
[Full Changelog](https://github.com/harness/drone/compare/v2.5.0...v2.6.0)
|
[Full Changelog](https://github.com/harness/drone/compare/v2.5.0...v2.6.0)
|
||||||
|
@ -8,6 +20,10 @@
|
||||||
|
|
||||||
- Feat: implemented gitee client [\#3156](https://github.com/harness/drone/pull/3156) ([kit101](https://github.com/kit101))
|
- Feat: implemented gitee client [\#3156](https://github.com/harness/drone/pull/3156) ([kit101](https://github.com/kit101))
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- release prep for v2.6.0 [\#3163](https://github.com/harness/drone/pull/3163) ([tphoney](https://github.com/tphoney))
|
||||||
|
|
||||||
## [v2.5.0](https://github.com/harness/drone/tree/v2.5.0) (2021-11-17)
|
## [v2.5.0](https://github.com/harness/drone/tree/v2.5.0) (2021-11-17)
|
||||||
|
|
||||||
[Full Changelog](https://github.com/harness/drone/compare/v2.4.0...v2.5.0)
|
[Full Changelog](https://github.com/harness/drone/compare/v2.4.0...v2.5.0)
|
||||||
|
|
|
@ -25,7 +25,7 @@ var (
|
||||||
// VersionMajor is for an API incompatible changes.
|
// VersionMajor is for an API incompatible changes.
|
||||||
VersionMajor int64 = 2
|
VersionMajor int64 = 2
|
||||||
// VersionMinor is for functionality in a backwards-compatible manner.
|
// VersionMinor is for functionality in a backwards-compatible manner.
|
||||||
VersionMinor int64 = 6
|
VersionMinor int64 = 7
|
||||||
// VersionPatch is for backwards-compatible bug fixes.
|
// VersionPatch is for backwards-compatible bug fixes.
|
||||||
VersionPatch int64 = 0
|
VersionPatch int64 = 0
|
||||||
// VersionPre indicates prerelease.
|
// VersionPre indicates prerelease.
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// Use of this source code is governed by the Drone Non-Commercial License
|
// Use of this source code is governed by the Drone Non-Commercial License
|
||||||
// that can be found in the LICENSE file.
|
// that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
//go:build !oss
|
||||||
// +build !oss
|
// +build !oss
|
||||||
|
|
||||||
package version
|
package version
|
||||||
|
@ -9,7 +10,7 @@ package version
|
||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
func TestVersion(t *testing.T) {
|
func TestVersion(t *testing.T) {
|
||||||
if got, want := Version.String(), "2.6.0"; got != want {
|
if got, want := Version.String(), "2.7.0"; got != want {
|
||||||
t.Errorf("Want version %s, got %s", want, got)
|
t.Errorf("Want version %s, got %s", want, got)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue