Skip to content

Commit

Permalink
Bump models format version to 13 and version number to 2.3.0 (#878)
Browse files Browse the repository at this point in the history
* Bump models format version to 13 and version number to 2.3.0

* Update version_test.go
  • Loading branch information
godrei authored Jul 7, 2023
1 parent ebd974e commit a5b9e2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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

0 comments on commit a5b9e2d

Please sign in to comment.