Cameron
Cameron

Reputation: 2975

How do I find the most recently released version of Ember-Data, Ember-CLI, and Ember.js?

I know how to check what my current version is

How to tell ember.js and ember-data version from ember-CLI?

But if I want to check which version I'm on from Ember-CLI, what is the best way to do this? I know I can google it but it would be nice if I could get the latest version straight from my command-prompt.

Upvotes: 2

Views: 95

Answers (1)

RustyToms
RustyToms

Reputation: 7820

Ember, ember-cli, and ember-data all keep their releases in sync. You can check what the latest release is in your terminal by using npm-view

npm view ember-cli version
npm view ember-data version

But my favorite way is to just check the blog, it always has the latest releases with some helpful notes. https://emberjs.com/blog/

Upvotes: 2

Related Questions