From 173ec7724d215bc1757affaa7fb37d1e56d70ab0 Mon Sep 17 00:00:00 2001 From: Tan Le Date: Tue, 17 Sep 2024 07:55:50 +1000 Subject: [PATCH] Release v4.4.0 (#2071) --- CHANGELOG.md | 17 ++++++++++++++++- lib/rouge/version.rb | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d14e0ea312..68d3e0a9db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +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 4.4.0: 2024-09-16 + +[Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v4.3.0...v4.4.0) + +- Docker Lexer + - Detect Containerfiles as Dockerfiles ([#2059](https://github.com/rouge-ruby/rouge/pull/2059/) by Andrew Hills) +- Make Lexer + - Handle `else if` statement in makefile ([#2063](https://github.com/rouge-ruby/rouge/pull/2063/) by Tan Le) +- Mojo Lexer (**NEW**) + - Add Mojo to list of supported language ([#2072](https://github.com/rouge-ruby/rouge/pull/2072/) by Tan Le) + - Fix NameError in the Mojo lexer in Ruby 2.7 ([#2068](https://github.com/rouge-ruby/rouge/pull/2068/) by Bart Broere) + - Mojo language highlighting support. ([#2050](https://github.com/rouge-ruby/rouge/pull/2050/) by ivellapillil) +- P4 Lexer (**NEW**) + - Add lexer for P4 ([#2049](https://github.com/rouge-ruby/rouge/pull/2049/) by Ryan Goodfellow) + ## version 4.3.0: 2024-06-14 [Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v4.2.1...v4.3.0) -_ General +- General - Align the base-16 default dark colour palette ([#2040](https://github.com/rouge-ruby/rouge/pull/2040/) by Tan Le) - Brainfuck Lexer - Add "bf" as an alias for brainfuck ([#2038](https://github.com/rouge-ruby/rouge/pull/2038/) by Boris Verkhovskiy) diff --git a/lib/rouge/version.rb b/lib/rouge/version.rb index 1e112cfc13..39c3edd239 100644 --- a/lib/rouge/version.rb +++ b/lib/rouge/version.rb @@ -3,6 +3,6 @@ module Rouge def self.version - "4.3.0" + "4.4.0" end end