Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump models format version to 13 and version number to 2.3.0 #878

Merged
merged 2 commits into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _tests/integration/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func Test_VersionOutput(t *testing.T) {

expectedOSVersion := fmt.Sprintf("%s (%s)", runtime.GOOS, runtime.GOARCH)
expectedVersionOut := fmt.Sprintf(`version: %s
format version: 12
format version: 13
os: %s
go: %s
build number:
Expand Down
3 changes: 2 additions & 1 deletion models/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
// FormatVersion ...
FormatVersion = "12"
FormatVersion = "13"
)

// StepListItemModel ...
Expand Down Expand Up @@ -113,6 +113,7 @@ type BitriseDataModel struct {

// StepIDData ...
// structured representation of a composite-step-id
//
// a composite step id is: step-lib-source::[email protected]
type StepIDData struct {
// SteplibSource : steplib source uri, or in case of local path just "path", and in case of direct git url just "git"
Expand Down
2 changes: 1 addition & 1 deletion version/build.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package version

// VERSION is the main CLI version number. It's defined at build time using -ldflags
var VERSION = "2.2.7"
var VERSION = "2.3.0"

// BuildNumber is the CI build number that creates the release. It's defined at build time using -ldflags
var BuildNumber = ""
Expand Down