Skip to content

Commit 5387b1c

Browse files
committed
cleanup after v1.4.5 release
1 parent d89c642 commit 5387b1c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 1.4.6 (Unreleased)
2+
13
## 1.4.5 (April 12, 2023)
24

35
* Revert change from [[#32892](https://github.com/hashicorp/terraform/issues/32892)] due to an upstream crash.

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.5
1+
1.4.6-dev

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
)
1212

1313
// The main version number that is being run at the moment.
14-
var Version = "1.4.5"
14+
var Version = "1.4.6"
1515

1616
// A pre-release marker for the version. If this is "" (empty string)
1717
// then it means that it is a final release. Otherwise, this is a pre-release
1818
// such as "dev" (in development), "beta", "rc1", etc.
19-
var Prerelease = ""
19+
var Prerelease = "dev"
2020

2121
// SemVer is an instance of version.Version. This has the secondary
2222
// benefit of verifying during tests and init time that our version is a

0 commit comments

Comments
 (0)