Skip to content

Commit

Permalink
Reformat messages, expanding NEWS and CHANGELOG into individual files…
Browse files Browse the repository at this point in the history
… for each version

This way, the user will only be provided with the relevant messages upon upgrade
  • Loading branch information
Phidica committed Nov 13, 2017
1 parent 52e5daf commit 772fad3
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 58 deletions.
51 changes: 0 additions & 51 deletions CHANGELOG.md

This file was deleted.

6 changes: 6 additions & 0 deletions Messages/changes-2.0.1.md
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
6 changes: 6 additions & 0 deletions Messages/changes-2.1.0.md
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
5 changes: 5 additions & 0 deletions Messages/changes-2.1.1.md
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)
6 changes: 6 additions & 0 deletions Messages/changes-2.1.2.md
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
9 changes: 9 additions & 0 deletions Messages/changes-2.2.0.md
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"
5 changes: 5 additions & 0 deletions Messages/changes-2.2.1.md
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
5 changes: 5 additions & 0 deletions Messages/changes-2.2.2.md
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)
7 changes: 2 additions & 5 deletions NEWS.md → Messages/news-2.0.0.md
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!

Expand Down
10 changes: 8 additions & 2 deletions messages.json
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"
}

0 comments on commit 772fad3

Please sign in to comment.