Skip to content

Commit

Permalink
release v1.6.2 (please-build#105)
Browse files Browse the repository at this point in the history

---------

Co-authored-by: rgodden <rgodden@thoughtmachine.net>
  • Loading branch information
goddenrich and goddenrich authored Feb 16, 2024
1 parent 16de0fc commit 010421f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.6.2
------------
* Fix bug where we weren't recursively looking at base configs to
determine if we should stop for a directory (#104)

Version 1.6.1
------------
* Don't set visibility on deps of experimental labels (#101)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
4 changes: 2 additions & 2 deletions config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ func TestGetKind(t *testing.T) {
}

func TestGetStop(t *testing.T) {
t.Run("when stop is true then dont stop", func(t *testing.T) {
t.Run("when stop is true then stop", func(t *testing.T) {
c := Config{Stop: true}
assert.True(t, c.GetStop())
})

t.Run("when stop is false then stop", func(t *testing.T) {
t.Run("when stop is false then don't stop", func(t *testing.T) {
c := Config{Stop: false}
assert.False(t, c.GetStop())
})
Expand Down

0 comments on commit 010421f

Please sign in to comment.