toranb / ember-data-django-rest-adapter

An ember-data adapter for django web applications powered by the django-rest-framework
MIT License
152 stars 26 forks source link

Disable Ember minor version lock #78

Closed dustinfarris closed 10 years ago

dustinfarris commented 10 years ago

I'm wondering how problematic it would be to replace (in bower.json):

"ember": "~1.4.0",

with

"ember": ">=1.4.0",

or similar.

Since Ember maintains a regular release cycle, I think this would be better suited for bleeding-edge projects—and also, over time, for projects that don't upgrade Ember often.

toranb commented 10 years ago

Sounds good - you are a committer my friend so fire up a PR and merge that biz :)

dustinfarris commented 10 years ago

Looks like we're good on this. @toranb can you bump the version? or is that something I can do?

craigteegarden commented 10 years ago

@dustinfarris you can do it, just run grunt release (more details here: https://github.com/toranb/ember-data-django-rest-adapter/pull/76) to update the versions, build the distribution versions, and commit the tagged version. Then you can verify it worked before pushing the bump commit to master.

dustinfarris commented 10 years ago

Very cool. That worked like a charm (https://github.com/toranb/ember-data-django-rest-adapter/commit/995e05f493bfc6924d3cc83357e5f4ef35013e56). Thanks, @craigteegarden.