diff --git a/CHANGELOG.md b/CHANGELOG.md index abcdbeb100..bf7acecce4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.22.0: 2020-08-12 + +[Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v3.21.0...v3.22.0) + +- PHP Lexer + - Rewrite PHP lexer to support use statements, function declarations and type declarations ([#1489](https://github.com/rouge-ruby/rouge/pull/1489/) by Michael Camilleri) + ## version 3.21.0: 2020-07-15 [Comparison with the previous version](https://github.com/rouge-ruby/rouge/compare/v3.20.0...v3.21.0) diff --git a/lib/rouge/version.rb b/lib/rouge/version.rb index b72067d52e..e029298acb 100644 --- a/lib/rouge/version.rb +++ b/lib/rouge/version.rb @@ -3,6 +3,6 @@ module Rouge def self.version - "3.21.0" + "3.22.0" end end