components / ember-data

Shim repository for EmberJS's Data component.
15 stars 53 forks source link

Changed ember version requirements in bower.json #20

Closed jonkoops closed 10 years ago

jonkoops commented 10 years ago

This change will allow for the installation of any version of ember within the v1 range. Where bower install ember ember-data previously required you to add a resolution to the bower config.

devinus commented 10 years ago

For some reason I don't think "~1.x" is valid syntax...

devinus commented 10 years ago

I believe "~1.0" matches anything in the 1.x range.

jonkoops commented 10 years ago

@devinus According to the semver documentation 1.x will match any version starting with 1 and ~1.0 will match any version starting with 1.0.

jonkoops commented 10 years ago

>=1.0.0 would also be valid.

jonkoops commented 10 years ago

On a second note >= 1.0.0 is probably better. The components ember repo seems to use this syntax too.

jonkoops commented 10 years ago

@rjackson Could you check this out?