Skip to content

Commit

Permalink
Bump version to 7.25.0 by Chef Expeditor
Browse files Browse the repository at this point in the history
Obvious fix; these changes are the result of automation not creative thinking.
  • Loading branch information
chef-ci committed Sep 29, 2021
1 parent 4f9a4fe commit d1b535d
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Cookstyle Changelog

<!-- latest_release -->
<!-- latest_release 7.25.0 -->
## [v7.25.0](https://github.com/chef/cookstyle/tree/v7.25.0) (2021-09-29)

#### Merged Pull Requests
- Add Chef/Correctness/MetadataMissingVersion [#907](https://github.com/chef/cookstyle/pull/907) ([tas50](https://github.com/tas50))
<!-- latest_release -->

<!-- release_rollup -->
<!-- release_rollup since=7.24.1 -->
### Changes not yet released to rubygems.org

#### Merged Pull Requests
- Add Chef/Correctness/MetadataMissingVersion [#907](https://github.com/chef/cookstyle/pull/907) ([tas50](https://github.com/tas50)) <!-- 7.25.0 -->
<!-- release_rollup -->

<!-- latest_stable_release -->
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Cookstyle is a [code linting](https://en.wikipedia.org/wiki/Lint_%28software%29) tool that helps you to write better Chef Infra cookbooks by detecting and automatically correcting style, syntax, and logic mistakes in your code.

Cookstyle is powered by the [RuboCop](http://www.rubocop.org) linting engine. RuboCop ships with over three-hundred rules, or cops, designed to detect common Ruby coding mistakes and enforce a common coding style. We've customized Cookstyle with a subset of those cops that we believe are perfectly tailored for cookbook development. We also ship **247 Chef Infra specific cops** that catch common cookbook coding mistakes, cleanup portions of code that are no longer necessary, and detect deprecations that prevent cookbooks from running on the latest releases of Chef Infra Client.
Cookstyle is powered by the [RuboCop](http://www.rubocop.org) linting engine. RuboCop ships with over three-hundred rules, or cops, designed to detect common Ruby coding mistakes and enforce a common coding style. We've customized Cookstyle with a subset of those cops that we believe are perfectly tailored for cookbook development. We also ship **248 Chef Infra specific cops** that catch common cookbook coding mistakes, cleanup portions of code that are no longer necessary, and detect deprecations that prevent cookbooks from running on the latest releases of Chef Infra Client.

For complete usage documentation along with documentation for all the included cops see https://docs.chef.io/workstation/cookstyle/

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.24.1
7.25.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
short_name: MetadataMissingVersion
full_name: Chef/Correctness/MetadataMissingVersion
department: Chef/Correctness
description: metadata.rb should define a version for the cookbook.
autocorrection: true
target_chef_version: All Versions
examples: |-
```
#### correct
```ruby
name 'foo'
version '1.0.0'
```
version_added: '7.25'
enabled: true
included_file_paths:
- "**/metadata.rb"
2 changes: 1 addition & 1 deletion lib/cookstyle/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Cookstyle
VERSION = "7.24.1" # rubocop: disable Style/StringLiterals
VERSION = "7.25.0" # rubocop: disable Style/StringLiterals
RUBOCOP_VERSION = '1.20.0'
end

0 comments on commit d1b535d

Please sign in to comment.