humidifier 4.1.1 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01f0f73eb18f928b5839555c3082972acd2e88cfd1718190693301f3edaca1ec
4
- data.tar.gz: 380853e79ef1a404150d1c1cf8dbc0d63033cec9f6c9049659b3f29729a3455a
3
+ metadata.gz: e34324981b385bc3efdad5bfeeb886003df6b3bcdb627fb95c1f56412c10eba5
4
+ data.tar.gz: 8cc326723106dc6cba28d716e4c3d0a872989adde9c11d8403f499cd1efa5bda
5
5
  SHA512:
6
- metadata.gz: cc2dfb66198bba3460b23e11e2560e1f8ac9af1e5430b98f3ba56c8710a0752e534cd48eaa52c2fd7bbb39d1d7b9124875252780b95da8c0a3c8b7e23a4dcbd0
7
- data.tar.gz: 1637e2f97405a431281b21bd40496e41f82e8056c9bf7e3cfc23331c20e27f10852c69f53bf4d2131b757efa86b1a923f152ecf48313e7fbeca548f8a75aea54
6
+ metadata.gz: 8482de19718abc28b58c1468fb51ee0541cb50beb033a87e948869c6e247241ecbf477190bf895c2d593dcd73135536c6259ffd83209996dd9d6cecdbd5c4066
7
+ data.tar.gz: dfe5eb332ecdc43e2e530e310e00eaaa69eb15c86d5e424ecdec2f7471a332ae19cacd99d9f832609dd8375b3cc6a4c93acce30e37a92c05a136bc2033bb18e7
@@ -12,7 +12,7 @@ jobs:
12
12
  - uses: actions/checkout@master
13
13
  - uses: ruby/setup-ruby@v1
14
14
  with:
15
- ruby-version: 3.0
15
+ ruby-version: '3.1'
16
16
  bundler-cache: true
17
17
  - name: Lint and test
18
18
  run: |
data/.rubocop.yml CHANGED
@@ -1,6 +1,8 @@
1
1
  AllCops:
2
2
  DisplayCopNames: true
3
3
  DisplayStyleGuide: true
4
+ NewCops: enable
5
+ SuggestExtensions: false
4
6
  TargetRubyVersion: 2.7
5
7
  Exclude:
6
8
  - '{tmp,vendor,yard}/**/*'
@@ -14,12 +16,21 @@ Layout/LineLength:
14
16
  Lint/AmbiguousBlockAssociation:
15
17
  Enabled: false
16
18
 
17
- Metrics/ClassLength:
19
+ Lint/DuplicateBranch:
20
+ Enabled: false
21
+
22
+ Lint/EmptyBlock:
23
+ Enabled: false
24
+
25
+ Metrics:
18
26
  Enabled: false
19
27
 
20
28
  Naming/MemoizedInstanceVariableName:
21
29
  Enabled: false
22
30
 
31
+ Naming/MethodParameterName:
32
+ Enabled: false
33
+
23
34
  Naming/RescuedExceptionsVariableName:
24
35
  Enabled: false
25
36
 
@@ -43,3 +54,6 @@ Style/OptionalBooleanParameter:
43
54
 
44
55
  Style/PerlBackrefs:
45
56
  Enabled: false
57
+
58
+ Style/StringLiterals:
59
+ EnforcedStyle: double_quotes
data/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [4.2.0] - 2022-06-06
10
+
11
+ ### Added
12
+
13
+ - The `version` command which will print out the specification version.
14
+
15
+ ### Changed
16
+
17
+ - Bump to CFN spec 75.0.0.
18
+
9
19
  ## [4.1.1] - 2021-11-17
10
20
 
11
21
  ### Changed
@@ -98,7 +108,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
98
108
  ### Changed
99
109
  - Update to CloudFormation specs v2.15.0
100
110
 
101
- [unreleased]: https://github.com/kddnewton/humidifier/compare/v4.1.1...HEAD
111
+ [unreleased]: https://github.com/kddnewton/humidifier/compare/v4.2.0...HEAD
112
+ [4.2.0]: https://github.com/kddnewton/humidifier/compare/v4.1.1...v4.2.0
102
113
  [4.1.1]: https://github.com/kddnewton/humidifier/compare/v4.1.0...v4.1.1
103
114
  [4.1.0]: https://github.com/kddnewton/humidifier/compare/v4.0.2...v4.1.0
104
115
  [4.0.2]: https://github.com/kddnewton/humidifier/compare/v4.0.1...v4.0.2