Skip to content

Commit

Permalink
Updates dependencies (#26)
Browse files Browse the repository at this point in the history
Updates major in list-extra and patch in true-path.

Closes #25.
  • Loading branch information
gampleman committed Jan 31, 2018
1 parent 7922d9d commit 6846c5e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
/elm-stuff/
/examples/elm-stuff/
tests/Doc
tests/VerifyExamples
.DS_Store
6 changes: 3 additions & 3 deletions elm-package.json
@@ -1,5 +1,5 @@
{
"version": "1.6.0",
"version": "1.6.1",
"summary": "A data visualization package for Elm",
"repository": "https://github.com/gampleman/elm-visualization.git",
"license": "MIT",
Expand All @@ -17,11 +17,11 @@
],
"dependencies": {
"Zinggi/elm-webgl-math": "1.0.5 <= v < 2.0.0",
"elm-community/list-extra": "6.1.0 <= v < 7.0.0",
"elm-community/list-extra": "6.1.0 <= v < 8.0.0",
"elm-lang/core": "5.0.0 <= v < 6.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0",
"elm-lang/svg": "2.0.0 <= v < 3.0.0",
"folkertdev/one-true-path-experiment": "3.0.0 <= v < 4.0.0",
"folkertdev/one-true-path-experiment": "3.0.2 <= v < 4.0.0",
"justinmimbs/elm-date-extra": "2.0.1 <= v < 3.0.0",
"opensolid/geometry": "2.0.1 <= v < 3.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/elm-package.json
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"elm-community/graph": "2.0.0 <= v < 3.0.0",
"elm-community/intdict": "2.0.0 <= v < 3.0.0",
"elm-community/list-extra": "6.1.0 <= v < 7.0.0",
"elm-community/list-extra": "6.1.0 <= v < 8.0.0",
"elm-lang/animation-frame": "1.0.1 <= v < 2.0.0",
"elm-lang/core": "5.0.0 <= v < 6.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0",
Expand All @@ -22,7 +22,7 @@
"eskimoblood/elm-color-extra": "5.0.0 <= v < 6.0.0",
"justinmimbs/elm-date-extra": "2.0.1 <= v < 3.0.0",
"mgold/elm-random-pcg": "5.0.0 <= v < 6.0.0",
"folkertdev/one-true-path-experiment": "3.0.0 <= v < 4.0.0",
"folkertdev/one-true-path-experiment": "3.0.2 <= v < 4.0.0",
"Zinggi/elm-webgl-math": "1.0.5 <= v < 2.0.0",
"opensolid/geometry": "2.0.1 <= v < 3.0.0"
},
Expand Down
3 changes: 2 additions & 1 deletion src/Visualization/Scale.elm
Expand Up @@ -717,9 +717,10 @@ always within the scale’s range.
scale : ContinuousScale
scale = linear ( 10, 100 ) ( 50, 100 )
convert scale 1 --> 45
convert (clamp scale) 1 --> 50
convert (Visualization.Scale.clamp scale) 1 --> 50
-}
clamp : Scale { a | convert : ( Float, Float ) -> range -> Float -> result } -> Scale { a | convert : ( Float, Float ) -> range -> Float -> result }
Expand Down
4 changes: 2 additions & 2 deletions tests/elm-package.json
Expand Up @@ -12,10 +12,10 @@
"Skinney/elm-array-exploration": "2.0.5 <= v < 3.0.0",
"Zinggi/elm-webgl-math": "1.0.5 <= v < 2.0.0",
"elm-community/elm-test": "4.0.0 <= v < 5.0.0",
"elm-community/list-extra": "6.1.0 <= v < 7.0.0",
"elm-community/list-extra": "6.1.0 <= v < 8.0.0",
"elm-lang/core": "5.0.0 <= v < 6.0.0",
"elm-lang/svg": "2.0.0 <= v < 3.0.0",
"folkertdev/one-true-path-experiment": "3.0.0 <= v < 4.0.0",
"folkertdev/one-true-path-experiment": "3.0.2 <= v < 4.0.0",
"folkertdev/svg-path-lowlevel": "1.0.0 <= v < 2.0.0",
"justinmimbs/elm-date-extra": "2.0.1 <= v < 3.0.0",
"opensolid/geometry": "2.0.1 <= v < 3.0.0"
Expand Down

0 comments on commit 6846c5e

Please sign in to comment.