From 1da8318c3130ce11fab41ffd883d203b0e3ed496 Mon Sep 17 00:00:00 2001 From: Michael Camilleri Date: Wed, 9 Dec 2020 04:55:47 +0900 Subject: [PATCH] Release v3.26.0 (#1645) --- CHANGELOG.md | 22 ++++++++++++++++++++++ lib/rouge/version.rb | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 002a975f32..167cc9473e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ 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.26.0: 2020-12-09 + +[Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v3.25.0...v3.26.0) + +- CMake Lexer + - Add missing CMake commands to CMake lexer ([#1630](https://github.com/rouge-ruby/rouge/pull/1630/) by gnaggnoyil) +- Crystal Lexer + - Improve visual sample and macro support for Crystal lexer ([#1644](https://github.com/rouge-ruby/rouge/pull/1644/) by Michael Camilleri) + - Support floor division operator in Crystal lexer ([#1639](https://github.com/rouge-ruby/rouge/pull/1639/) by Rymiel) +- JSL Lexer + - Fix lexing of messages, nested comments, missing operators and decimals in JSL lexer ([#1638](https://github.com/rouge-ruby/rouge/pull/1638/) by Ben Peachey Higdon) +- OCL Lexer (**NEW**) + - Add OCL lexer ([#1637](https://github.com/rouge-ruby/rouge/pull/1637/) by Gerson SunyƩ) +- Python Lexer + - Use String::Affix token for string prefixes in Python lexer ([#1635](https://github.com/rouge-ruby/rouge/pull/1635/) by Tan Le) +- ReasonML Lexer + - Improve support for comments in ReasonML lexer ([#1641](https://github.com/rouge-ruby/rouge/pull/1641/) by Amirali Esmaeili) +- ReScript Lexer (**NEW**) + - Add ReScript lexer ([#1633](https://github.com/rouge-ruby/rouge/pull/1633/) by Amirali Esmaeili) +- Rust Lexer + - Add support for octal literals to Rust lexer ([#1643](https://github.com/rouge-ruby/rouge/pull/1643/) by nsfisis) + ## version 3.25.0: 2020-11-11 [Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v3.24.0...v3.25.0) diff --git a/lib/rouge/version.rb b/lib/rouge/version.rb index 7c2ae88ed2..cad1c5e98f 100644 --- a/lib/rouge/version.rb +++ b/lib/rouge/version.rb @@ -3,6 +3,6 @@ module Rouge def self.version - "3.25.0" + "3.26.0" end end