Skip to content

Commit

Permalink
Prepare for 1.30.0 (#668)
Browse files Browse the repository at this point in the history
* update PluginDependencyMap

* format version bump to 7 in the bitrise.yml

* bump min stempan and envman version

* dep update

* bump the version to 1.30.0

* dep update + bitrise-plugin-step version bump
  • Loading branch information
BirmacherAkos authored May 14, 2019
1 parent 2ec917b commit d517b4e
Show file tree
Hide file tree
Showing 147 changed files with 15,435 additions and 2,161 deletions.
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
12 changes: 6 additions & 6 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",
MinVersion: "0.9.10",
},
"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

0 comments on commit d517b4e

Please sign in to comment.