forked from ThomasWeiser/Elm.tmLanguage
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.22.5: Fix a typo in the prerelease instructions
- Loading branch information
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
> { | ||
> "install_prereleases": | ||
> [ | ||
> "Elm Language support" | ||
> "Elm Language Support" | ||
> ], | ||
> } | ||
> ``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
New in Elm Language Support 0.22.5 (August 25, 2018) | ||
|
||
Nothing, except fixing a typo in this VERY IMPORTANT message: | ||
|
||
Elm 0.19 was recently released: | ||
https://elm-lang.org/blog/small-assets-without-the-headache | ||
|
||
It makes major, breaking changes to the compiler's interface with packages | ||
like this one. It is likely the next release of Elm Language Support will | ||
break compatibility with Elm 0.18. | ||
|
||
If you plan to remain on Elm 0.18 for now, you should configure Package | ||
Control to ignore updates to this package until you are ready to upgrade. | ||
In Sublime Text, choose Preferences > Package Settings > Package Control > | ||
Settings – User, then add this setting to your | ||
Package Control.sublime-settings file: | ||
|
||
{ | ||
"auto_upgrade_ignore": [ | ||
"Elm Language Support" | ||
], | ||
} | ||
|
||
|
||
Upgrading to Elm 0.19 | ||
|
||
A pre-release version of this package with experimental support for Elm 0.19 | ||
is available. If you're using Elm 0.19 already, we'd value your feedback! | ||
|
||
WARNING: This new version does not support Elm 0.18! | ||
|
||
To upgrade, configure Package Control to install pre-release versions of this | ||
package. In Sublime Text, choose Preferences > Package Settings > Package | ||
Control > Settings – User, then add this setting to your | ||
Package Control.sublime-settings file: | ||
|
||
{ | ||
"install_prereleases": | ||
[ | ||
"Elm Language Support" | ||
], | ||
} | ||
|
||
Then use the Package Control: Upgrade Package command in the Command | ||
Palette to upgrade. Make sure to read the release notes that are displayed | ||
following the upgrade! |