diff --git a/CHANGELOG.md b/CHANGELOG.md index 104d0a8..5d6f2f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.8.1] - 2018-01-24 +### Fixed +- Added the forgotten `elseif` keyword + ## [0.8.0] - 2017-11-17 ### Removed - Moved the linting functionality into a seperate package, [`linter-mzn`](https://github.com/Dekker1/linter-mzn). With eyes to the future and possibility for a full MiniZinc Suite in Atom. diff --git a/grammars/mzn.cson b/grammars/mzn.cson index 8257e1e..986c4f8 100644 --- a/grammars/mzn.cson +++ b/grammars/mzn.cson @@ -40,7 +40,7 @@ } { - 'match': '\\b(for|forall|if|then|else|endif|where)\\b' + 'match': '\\b(for|forall|if|then|elseif|else|endif|where)\\b' 'name': 'keyword.control.mzn' } diff --git a/package.json b/package.json index f30da8b..c5d9f81 100644 --- a/package.json +++ b/package.json @@ -7,5 +7,4 @@ "engines": { "atom": ">=1.0.0 <2.0.0" } - } }