rom-rb / rom

Data mapping and persistence toolkit for Ruby
https://rom-rb.org
MIT License
2.08k stars 161 forks source link

Update dry-types dependency to 0.9 #371

Closed timriley closed 7 years ago

timriley commented 7 years ago

This should make it possible to work with rom-sql 0.9, which also depends on dry-types 0.9.

timriley commented 7 years ago

As @flash-gordon summed up:

actually not, ~> 0.8 is compatible with 0.9.X. ~> 0.8 is the same as >= 0.8, < 1.0. It's really easy to get confused because ~> 0.8.0 means the very different thing: >= 0.8.0, < 0.9

😬