Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Commit

Permalink
Bump Wiggins Tag (#385)
Browse files Browse the repository at this point in the history
* bump tag

* changelog
  • Loading branch information
enricozb authored Oct 6, 2021
1 parent a95a4a0 commit 8750af2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Spectrometer Changelog

## v2.16.2
- Monorepo: Don't crash if there are no ninja/buildspec files to upload. ([#385](https://github.com/fossas/spectrometer/pull/385))
- Monorepo: Fix issue with only-path/exclude-path globs.

## v2.16.1
- Gradle: Supports analysis of projects using gralde v3.3 or below. ([#370](https://github.com/fossas/spectrometer/pull/370))

Expand Down
4 changes: 2 additions & 2 deletions test/GraphingSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec = do
describe "unfold" $ do
it "should unfold deeply" $ do
let graph :: Graphing Int
graph = unfold [10] (\x -> if x > 0 then [x -2] else []) id
graph = unfold [10] (\x -> if x > 0 then [x - 2] else []) id

expectDirect [10] graph
expectDeps [10, 8, 6, 4, 2, 0] graph
Expand All @@ -29,7 +29,7 @@ spec = do
describe "promoteToDirect" $ do
it "should promote nodes to direct" $ do
let graph :: Graphing Int
graph = Graphing.promoteToDirect (< 5) (unfold [10] (\x -> if x > 0 then [x -2] else []) id)
graph = Graphing.promoteToDirect (< 5) (unfold [10] (\x -> if x > 0 then [x - 2] else []) id)
expectDirect [0, 2, 4, 10] graph
expectDeps [10, 8, 6, 4, 2, 0] graph
expectEdges [(10, 8), (8, 6), (6, 4), (4, 2), (2, 0)] graph
Expand Down
2 changes: 1 addition & 1 deletion vendor_download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ esac
TAG="latest"
echo "Downloading asset information from latest tag for architecture '$ASSET_POSTFIX'"

WIGGINS_TAG="2021-09-27-d9b2cef"
WIGGINS_TAG="2021-10-06-7f69dfc"
echo "Downloading wiggins binary"
echo "Using wiggins release: $WIGGINS_TAG"
WIGGINS_RELEASE_JSON=vendor/wiggins-release.json
Expand Down

0 comments on commit 8750af2

Please sign in to comment.