Search Haskell Channel Logs

Friday, February 24, 2017

#haskell channel featuring adelbertc, ongy,

adelbertc 2017-02-24 20:21:18
how does one generally determine the version bounds they want for a particular dependency?
ongy 2017-02-24 20:25:43
if the library does the intended versioning, you usually want to restrict the major version. So if something is currently 1.3.2.1. I'd say >= 1.3 < 1.4. Where the lower bound is a bit more "moving" depending on what you need
adelbertc 2017-02-24 20:27:11
ongy: gotcha, makes sense
adelbertc 2017-02-24 20:27:12
thanks!