Skip to content

Commit

Permalink
Bump version to 7.31.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 Jan 26, 2022
1 parent d51c948 commit b606ff0
Show file tree
Hide file tree
Showing 5 changed files with 29 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.31.0 -->
## [v7.31.0](https://github.com/chef/cookstyle/tree/v7.31.0) (2022-01-26)

#### Merged Pull Requests
- Add a new Chef/Deprecations/Delivery cop [#937](https://github.com/chef/cookstyle/pull/937) ([tas50](https://github.com/tas50))
<!-- latest_release -->

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

#### Merged Pull Requests
- Add a new Chef/Deprecations/Delivery cop [#937](https://github.com/chef/cookstyle/pull/937) ([tas50](https://github.com/tas50)) <!-- 7.31.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 **252 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 **253 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.30.4
7.31.0
16 changes: 16 additions & 0 deletions docs-chef-io/data/cookstyle/cops_chef_deprecations_delivery.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
short_name: Delivery
full_name: Chef/Deprecations/Delivery
department: Chef/Deprecations
description: |-
The Delivery CLI from Chef Delivery/Workflow is no longer bundled with Chef Workstation as Chef Delivery is end of life as of Dec 31st 2021.
Users of Delivery / Workflow would include a `.delivery` directory in their cookbooks. This directory would include Delivery local-mode configs
or Delivery cookbooks. The contents of this directory are now obsolete and should be removed.
autocorrection: false
target_chef_version: All Versions
examples:
version_added: 7.31.0
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.30.4" # rubocop: disable Style/StringLiterals
VERSION = "7.31.0" # rubocop: disable Style/StringLiterals
RUBOCOP_VERSION = '1.25.0'
end

0 comments on commit b606ff0

Please sign in to comment.