-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat messages, expanding NEWS and CHANGELOG into individual files…
… for each version This way, the user will only be provided with the relevant messages upon upgrade
- Loading branch information
Showing
10 changed files
with
52 additions
and
58 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
Changes - 2.0.1 | ||
=============== | ||
|
||
Bugfixes: | ||
- Comment lines could incorrectly appear after certain line continuations | ||
- stderr redirection into pipe (`^|` and `^^|`) was not recognised |
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,6 @@ | ||
Changes - 2.1.0 | ||
=============== | ||
|
||
New features: | ||
- Support for short (`-x`) and long (`--x=arg`) option arguments using the `variable.parameter` scope (#5) | ||
- Recognise `--` as the end of options and treat further arguments as normal, even if they start with a dash |
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,5 @@ | ||
Changes - 2.1.1 | ||
=============== | ||
|
||
Bugfixes: | ||
- A lone `.` was scoped as a decimal point for a numeric (#10) |
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,6 @@ | ||
Changes - 2.1.2 | ||
=============== | ||
|
||
Bugfixes: | ||
- A command call line ending with `=` did not terminate (#11) | ||
- An `=` could not safely be a command name |
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,9 @@ | ||
Changes - 2.2.0 | ||
=============== | ||
|
||
Improvements: | ||
- Make numeric scoping more consistent, and now recognise numbers starting with a plus or minus sign. | ||
After the end of options argument `--`, an argument like `-5` will be scoped as numeric rather than as an option. Additionally, recognition of sign is important for when numbers are used in index expansion | ||
|
||
Bugfixes: | ||
- Redirected process expansion failed to recognise special names like "self" |
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,5 @@ | ||
Changes - 2.2.1 | ||
=============== | ||
|
||
Bugfixes: | ||
- An argument consisting of a lone `-` was scoped as an option |
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,5 @@ | ||
Changes - 2.2.2 | ||
=============== | ||
|
||
Bugfixes: | ||
- Snippets did not use tabs for indenting (#12) |
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 |
---|---|---|
@@ -1,8 +1,5 @@ | ||
News | ||
==== | ||
|
||
2.0.0 | ||
----- | ||
News - 2.0.0 | ||
============ | ||
|
||
Welcome to the new Sublime Text fish package! | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,10 @@ | ||
{ | ||
"2.0.0": "NEWS.md", | ||
"2.2.2": "CHANGELOG.md" | ||
"2.2.2": "Messages/changes-2.2.2.md", | ||
"2.2.1": "Messages/changes-2.2.1.md", | ||
"2.2.0": "Messages/changes-2.2.0.md", | ||
"2.1.2": "Messages/changes-2.1.2.md", | ||
"2.1.1": "Messages/changes-2.1.1.md", | ||
"2.1.0": "Messages/changes-2.1.0.md", | ||
"2.0.1": "Messages/changes-2.0.1.md", | ||
"2.0.0": "Messages/news-2.0.0.md" | ||
} |