Skip to content

Commit

Permalink
Bump version numbers for a v0.7.0-alpha.0 prerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanjli committed Apr 10, 2024
1 parent 10777b1 commit 6d5ca39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 0.7.0-alpha.0 - 2024-04-10

### Added

- (cli) Added a `[dev] plt stage` subcommand to bundle and stage the pallet as the next one to be applied.
Expand Down
8 changes: 4 additions & 4 deletions cmd/forklift/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@ const (
palletMinVersion = "v0.4.0"
// bundleMinVersion is the minimum supported Forklift version among staged pallet bundles. A
// bundle with a lower Forklift version cannot be used.
bundleMinVersion = "v0.7.0-dev"
bundleMinVersion = "v0.7.0-alpha.0"
// newBundleVersion is the Forklift version reported in new staged pallet bundles made by Forklift.
// Older versions of the Forklift tool cannot use such bundles.
newBundleVersion = "v0.7.0-dev"
newBundleVersion = "v0.7.0-alpha.0"
// newStageStoreVersion is the Forklift version reported in a stage store initialized by Forklift.
// Older versions of the Forklift tool cannot use the state store.
newStageStoreVersion = "v0.7.0-dev"
newStageStoreVersion = "v0.7.0-alpha.0"
// fallbackVersion is the version reported which the Forklift tool reports itself as if its actual
// version is unknown.
fallbackVersion = "v0.7.0-dev"
fallbackVersion = "v0.7.0-alpha.0"
)

var (
Expand Down

0 comments on commit 6d5ca39

Please sign in to comment.