Skip to content

Commit

Permalink
default lifecycle -> v0.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Jones <[email protected]>
Signed-off-by: Emily Casey <[email protected]>
  • Loading branch information
simonjjones authored and ekcasey committed Oct 21, 2019
1 parent d2b3633 commit 3b80653
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion builder/lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const (
AssumedLifecycleVersion = "0.3.0"
AssumedPlatformAPIVersion = "0.1"

DefaultLifecycleVersion = "0.4.0"
DefaultLifecycleVersion = "0.5.0"
DefaultBuildpackAPIVersion = "0.2"
DefaultPlatformAPIVersion = "0.1"
)
Expand Down
5 changes: 2 additions & 3 deletions create_builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,12 @@ func testCreateBuilder(t *testing.T, when spec.G, it spec.S) {
})

it("should download default lifecycle", func() {
expectedDefaultLifecycleVersion := "0.4.0"
mockDownloader.EXPECT().Download(
gomock.Any(),
fmt.Sprintf(
"https://github.com/buildpack/lifecycle/releases/download/v%s/lifecycle-v%s+linux.x86-64.tgz",
expectedDefaultLifecycleVersion,
expectedDefaultLifecycleVersion,
builder.DefaultLifecycleVersion,
builder.DefaultLifecycleVersion,
),
).Return(
blob.NewBlob(filepath.Join("testdata", "lifecycle")), nil,
Expand Down

0 comments on commit 3b80653

Please sign in to comment.