From b36da5dc38d5ac3524b03dc159ce393badbb21ee Mon Sep 17 00:00:00 2001 From: Michael Camilleri Date: Wed, 11 Dec 2019 03:30:13 +0900 Subject: [PATCH] Release v3.14.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ lib/rouge/version.rb | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b331e7cad2..b2febed018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,26 @@ This log summarizes the changes in each released version of Rouge. Rouge follows [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html). +## version 3.14.0: 2019-12-11 + +[Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v3.13.0...v3.14.0) + +- General + - Fix lexing of comments at the EOF ([#1371](https://github.com/rouge-ruby/rouge/pull/1371/) by Maxime Kjaer) + - Fix typo in README.md ([#1367](https://github.com/rouge-ruby/rouge/pull/1367/) by Sven Tennie) +- JSONDOC Lexer + - Update state names in json-doc lexer ([#1364](https://github.com/rouge-ruby/rouge/pull/1364/) by Maxime Kjaer) +- Liquid Lexer + - Add pattern for matching filenames to the Liquid lexer ([#1351](https://github.com/rouge-ruby/rouge/pull/1351/) by Eric Knibbe) +- Magik Lexer + - Add `_finally` keyword to Magik lexer ([#1365](https://github.com/rouge-ruby/rouge/pull/1365/) by Steven Looman) +- NES Assembly Lexer (**NEW**) + - Add NES Assembly lexer ([#1354](https://github.com/rouge-ruby/rouge/pull/1354/) by Yury Sinev) +- Slice Lexer (**NEW**) + - Add Slice lexer ([#867](https://github.com/rouge-ruby/rouge/pull/867/) by jolkdarr) +- TOML Lexer + - Add support for inline tables to TOML lexer ([#1359](https://github.com/rouge-ruby/rouge/pull/1359/) by Michael Camilleri) + ## version 3.13.0: 2019-11-13 [Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v3.12.0...v3.13.0) diff --git a/lib/rouge/version.rb b/lib/rouge/version.rb index 1e6dba6c32..39d56e6e3d 100644 --- a/lib/rouge/version.rb +++ b/lib/rouge/version.rb @@ -3,6 +3,6 @@ module Rouge def self.version - "3.13.0" + "3.14.0" end end