From a3ddadb4c55a2af61312eb84b896099fc63b522d Mon Sep 17 00:00:00 2001 From: Timo Roessner Date: Sun, 28 Jan 2024 13:06:59 +0100 Subject: [PATCH] Prepare version 6.3.0 for release. --- CHANGELOG.md | 7 +++++++ features/command_line_interface/options.feature | 4 ++-- features/reports/json.feature | 6 +++--- features/reports/reports.feature | 8 ++++---- features/reports/yaml.feature | 6 +++--- lib/reek/version.rb | 2 +- 6 files changed, 20 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f715985e..c60a10751 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ + # Change log +## 6.3.0 (2024-01-28) + +### Features and bugfixes + +* Update parser dependency to the 3.3.x series([#1761] by [mvz]) + ## 6.2.0 (2023-12-31) ### Features and bugfixes diff --git a/features/command_line_interface/options.feature b/features/command_line_interface/options.feature index 43bce7a94..7aa2f02c3 100644 --- a/features/command_line_interface/options.feature +++ b/features/command_line_interface/options.feature @@ -43,7 +43,7 @@ Feature: Reek can be controlled using command-line options -c, --config FILE Read configuration options from FILE --smell SMELL Only look for a specific smell. Call it like this: reek --smell MissingSafeMethod source.rb - Check out https://github.com/troessner/reek/blob/v6.2.0/docs/Code-Smells.md for a list of smells + Check out https://github.com/troessner/reek/blob/v6.3.0/docs/Code-Smells.md for a list of smells --stdin-filename FILE When passing code in via pipe, assume this filename when checking file or directory rules in the config. Generate a todo list: @@ -119,5 +119,5 @@ Feature: Reek can be controlled using command-line options UnusedPrivateMethod UtilityFunction - Check out https://github.com/troessner/reek/blob/v6.2.0/docs/Code-Smells.md for a details on each detector + Check out https://github.com/troessner/reek/blob/v6.3.0/docs/Code-Smells.md for a details on each detector """ diff --git a/features/reports/json.feature b/features/reports/json.feature index c40dcdbe7..e3e8f686e 100644 --- a/features/reports/json.feature +++ b/features/reports/json.feature @@ -24,7 +24,7 @@ Feature: Report smells using simple JSON layout "context": "Smelly#x", "lines": [ 4 ], "message": "has the name 'x'", - "documentation_link": "https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Method-Name.md", + "documentation_link": "https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Method-Name.md", "name": "x" }, { @@ -33,7 +33,7 @@ Feature: Report smells using simple JSON layout "context": "Smelly#x", "lines": [ 5 ], "message": "has the variable name 'y'", - "documentation_link": "https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Variable-Name.md", + "documentation_link": "https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Variable-Name.md", "name": "y" } ] @@ -53,7 +53,7 @@ Feature: Report smells using simple JSON layout 1 ], "message": "has no descriptive comment", - "documentation_link": "https://github.com/troessner/reek/blob/v6.2.0/docs/Irresponsible-Module.md" + "documentation_link": "https://github.com/troessner/reek/blob/v6.3.0/docs/Irresponsible-Module.md" } ] """ diff --git a/features/reports/reports.feature b/features/reports/reports.feature index 28a9a4df7..707a73a81 100644 --- a/features/reports/reports.feature +++ b/features/reports/reports.feature @@ -182,8 +182,8 @@ Feature: Correctly formatted reports And it reports: """ smelly.rb -- 2 warnings: - [4]:UncommunicativeMethodName: Smelly#x has the name 'x' [https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Method-Name.md] - [5]:UncommunicativeVariableName: Smelly#x has the variable name 'y' [https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Variable-Name.md] + [4]:UncommunicativeMethodName: Smelly#x has the name 'x' [https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Method-Name.md] + [5]:UncommunicativeVariableName: Smelly#x has the variable name 'y' [https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Variable-Name.md] """ Examples: @@ -209,8 +209,8 @@ Feature: Correctly formatted reports And it reports: """ smelly.rb -- 2 warnings: - UncommunicativeMethodName: Smelly#x has the name 'x' [https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Method-Name.md] - UncommunicativeVariableName: Smelly#x has the variable name 'y' [https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Variable-Name.md] + UncommunicativeMethodName: Smelly#x has the name 'x' [https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Method-Name.md] + UncommunicativeVariableName: Smelly#x has the variable name 'y' [https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Variable-Name.md] """ Examples: diff --git a/features/reports/yaml.feature b/features/reports/yaml.feature index 1198d5c93..3f60791d1 100644 --- a/features/reports/yaml.feature +++ b/features/reports/yaml.feature @@ -25,7 +25,7 @@ Feature: Report smells using simple YAML layout smell_type: UncommunicativeMethodName source: smelly.rb name: x - documentation_link: https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Method-Name.md + documentation_link: https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Method-Name.md - context: Smelly#x lines: - 5 @@ -33,7 +33,7 @@ Feature: Report smells using simple YAML layout smell_type: UncommunicativeVariableName source: smelly.rb name: y - documentation_link: https://github.com/troessner/reek/blob/v6.2.0/docs/Uncommunicative-Variable-Name.md + documentation_link: https://github.com/troessner/reek/blob/v6.3.0/docs/Uncommunicative-Variable-Name.md """ Scenario: Indicate smells and print them as yaml when using STDIN @@ -48,5 +48,5 @@ Feature: Report smells using simple YAML layout lines: - 1 message: has no descriptive comment - documentation_link: https://github.com/troessner/reek/blob/v6.2.0/docs/Irresponsible-Module.md + documentation_link: https://github.com/troessner/reek/blob/v6.3.0/docs/Irresponsible-Module.md """ diff --git a/lib/reek/version.rb b/lib/reek/version.rb index 2c9cba463..ddadc5349 100644 --- a/lib/reek/version.rb +++ b/lib/reek/version.rb @@ -8,6 +8,6 @@ module Reek # @public module Version # @public - STRING = '6.2.0' + STRING = '6.3.0' end end