Skip to content

Commit

Permalink
Update Bitrise CLI and log format versions (#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
godrei authored Aug 16, 2024
1 parent eff4a49 commit 8d200a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ func createWorkflowRunPlan(

return models.WorkflowRunPlan{
Version: cliVersion,
LogFormatVersion: "1",
LogFormatVersion: models.LogFormatVersion,
CIMode: modes.CIMode,
PRMode: modes.PRMode,
DebugMode: modes.DebugMode,
Expand Down
2 changes: 2 additions & 0 deletions models/workflow_run_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import (
stepmanModels "github.com/bitrise-io/stepman/models"
)

const LogFormatVersion = "2"

type WorkflowRunModes struct {
CIMode bool
PRMode bool
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.19.0"
var VERSION = "2.20.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 8d200a1

Please sign in to comment.