There are two places where you should check your Meteor version.
There is a main Meteor tool, installed to your home folder: /Users/nearpoint/.meteor
. It has auto-updater and it keeps copies of Meteor for different versions installed.
Another place is your project's folder. project/.meteor/release
contains version of Meteor this project is using. Even if your main Meteor tool updated, it will still use the pinned version for your project, so backward incompatible changes will not break unless you want it.
To update main Mteor tool (usually it auto-updates but if it doesn't) just run curl https://install.meteor.com | sh
.
To update version for your project run in your project's folder:
meteor update
to update to the latest release or
meteor update --release 0.6.4.1
if you want to upgrade (or downgrade) to the specific release. Now if you look at .meteor/release
file in your project, it will change to new pinned release.