atom / language-clojure

Clojure package for Atom
Other
49 stars 48 forks source link

Cannot update to 0.21.0 #44

Closed shaunlebron closed 8 years ago

shaunlebron commented 8 years ago

If I search for packages to install, I see 0.21.0:

screen shot 2016-06-05 at 1 56 24 pm

I have the older 0.20.0, but it is not detecting the newer version. There is no update button:

screen shot 2016-06-05 at 1 57 05 pm

Running apm upgrade didn't help either:

$ apm upgrade language-clojure
Package Updates Available (0)
└── (empty)
shaunlebron commented 8 years ago

Installing it like this seems work, but it's installing it a user package instead of upgrading the core package:

$ apm install language-clojure@0.21.0
The language-clojure package is bundled with Atom and should not be explicitly installed.
You can run `apm uninstall language-clojure` to uninstall it and then the version bundled
with Atom will be used.
Installing language-clojure@0.21.0 to /Users/swilliam/.atom/packages ✓
winstliu commented 8 years ago

This is expected, as core packages are associated with the Atom version they come with and cannot be manually updated (to prevent compatibility conflicts). v0.21.0 should be available starting in Atom 1.9.0.

shaunlebron commented 8 years ago

Thanks for the background