Skip to content

Commit

Permalink
Relax version bounds so both 0.15 and 0.16 theoretically work.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Feldman committed Oct 17, 2015
1 parent fdcc8ab commit 0977137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/elm-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
],
"exposed-modules": [],
"dependencies": {
"deadfoxygrandpa/elm-test": "1.0.2 <= v < 2.0.0",
"elm-lang/core": "3.0.0 <= v < 4.0.0",
"laszlopandy/elm-console": "1.0.2 <= v < 2.0.0"
"deadfoxygrandpa/Elm-Test": "1.0.2 <= v < 2.0.0",
"elm-lang/core": "2.0.0 <= v < 4.0.0",
"laszlopandy/elm-console": "1.0.1 <= v < 2.0.0"
},
"elm-version": "0.16.0 <= v < 0.17.0"
}

2 comments on commit 0977137

@avh4
Copy link
Collaborator

@avh4 avh4 commented on 0977137 Oct 17, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rtfeldman this still needs to be the all-lowercase deadfoxygrandpa/elm-test for 0.16. It looks like elm-version of that is 0.15.0 <= v < 0.17.0 even in 2.0.0, so that should still work for 0.15, though possibly Alex didn't publish it to the 0.15 package repo, which could easily be done.

@rtfeldman
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, good point. I'm upgrading how binaries get downloaded and want to get everything using the new ways of doing things on 0.15.1 first, so we can then have a clean "just upgrade to 0.16" pass afterwards.

Please sign in to comment.