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

Prepare for 1.30.0 #668

Merged
merged 6 commits into from
May 14, 2019
Merged
Show file tree
Hide file tree
Changes from 5 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
28 changes: 14 additions & 14 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.29.0", out)
require.Equal(t, "1.30.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.29.0
expectedVersionOut := fmt.Sprintf(`version: 1.30.0
format version: 8
os: %s
go: %s
Expand Down
2 changes: 1 addition & 1 deletion bitrise.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
format_version: "5"
format_version: 7
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: other

Expand Down
10 changes: 5 additions & 5 deletions bitrise/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
)

const (
minEnvmanVersion = "2.2.2"
minStepmanVersion = "0.11.3"
minEnvmanVersion = "2.2.3"
minStepmanVersion = "0.11.5"
)

// PluginDependency ..
Expand All @@ -28,19 +28,19 @@ type PluginDependency struct {
var PluginDependencyMap = map[string]PluginDependency{
"init": PluginDependency{
Source: "https://github.com/bitrise-io/bitrise-plugins-init.git",
MinVersion: "1.1.1",
MinVersion: "1.2.0",
},
"step": PluginDependency{
Source: "https://github.com/bitrise-io/bitrise-plugins-step.git",
MinVersion: "0.9.9",
},
"workflow-editor": PluginDependency{
Source: "https://github.com/bitrise-io/bitrise-workflow-editor.git",
MinVersion: "1.1.52",
MinVersion: "1.1.53",
},
"analytics": PluginDependency{
Source: "https://github.com/bitrise-io/bitrise-plugins-analytics.git",
MinVersion: "0.10.1",
MinVersion: "0.10.2",
},
}

Expand Down
6 changes: 1 addition & 5 deletions vendor/github.com/Sirupsen/logrus/.travis.yml

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

2 changes: 1 addition & 1 deletion vendor/github.com/Sirupsen/logrus/go.mod

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

2 changes: 2 additions & 0 deletions vendor/github.com/Sirupsen/logrus/go.sum

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

10 changes: 5 additions & 5 deletions vendor/github.com/bitrise-io/envman/Gopkg.lock

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

2 changes: 1 addition & 1 deletion vendor/github.com/bitrise-io/envman/version/version.go

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

76 changes: 76 additions & 0 deletions vendor/github.com/bitrise-io/go-utils/log/internal_logger.go

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

32 changes: 28 additions & 4 deletions vendor/github.com/bitrise-io/go-utils/log/print.go

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

Loading