Skip to content

Commit

Permalink
Prepare for release (#701)
Browse files Browse the repository at this point in the history
* godeps update, dependent tools version update

* version bump (1.38.0 -> 1.39.0)
  • Loading branch information
godrei authored Feb 11, 2020
1 parent e572640 commit f81530e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions _tests/integration/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func Test_VersionOutput(t *testing.T) {
{
out, err := command.RunCommandAndReturnCombinedStdoutAndStderr(binPath(), "version")
require.NoError(t, err)
require.Equal(t, "1.38.0", out)
require.Equal(t, "1.39.0", out)
}

t.Log("Version --full")
Expand All @@ -23,7 +23,7 @@ func Test_VersionOutput(t *testing.T) {
require.NoError(t, err)

expectedOSVersion := fmt.Sprintf("%s (%s)", runtime.GOOS, runtime.GOARCH)
expectedVersionOut := fmt.Sprintf(`version: 1.38.0
expectedVersionOut := fmt.Sprintf(`version: 1.39.0
format version: 10
os: %s
go: %s
Expand Down
6 changes: 3 additions & 3 deletions bitrise/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

const (
minEnvmanVersion = "2.2.11"
minStepmanVersion = "0.11.13"
minStepmanVersion = "0.12.0"
)

// PluginDependency ..
Expand All @@ -36,11 +36,11 @@ var PluginDependencyMap = map[string]PluginDependency{
},
"workflow-editor": PluginDependency{
Source: "https://github.com/bitrise-io/bitrise-workflow-editor.git",
MinVersion: "1.1.68",
MinVersion: "1.1.72",
},
"analytics": PluginDependency{
Source: "https://github.com/bitrise-io/bitrise-plugins-analytics.git",
MinVersion: "0.10.4",
MinVersion: "0.10.5",
},
}

Expand Down
13 changes: 11 additions & 2 deletions vendor/golang.org/x/crypto/ssh/terminal/terminal.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION ...
const VERSION = "1.38.0"
const VERSION = "1.39.0"

0 comments on commit f81530e

Please sign in to comment.