everythingrb 0.3.0 → 0.3.1

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: 140ec6261f323365ad8eeda8cd09fb76f81be1d53f3114611b20b22bf678c2c0
4
- data.tar.gz: 575463b3302516a32606578fa3781781cf5d52652eb58e488d2e8963189409b7
3
+ metadata.gz: 747441fc1a0c8be071a4465edb190dead79eea7195b66b262976e8ae91b6bc0f
4
+ data.tar.gz: 491c3bc6c22bc02495425fecfb51166c8982d86ad0eede1b10980e2bf040b705
5
5
  SHA512:
6
- metadata.gz: f5aa7a5cc9c94019c2d91486a726b5778d9cc703d3e2b2b5d7fea25ba50f6d30465f2faace9de8eb9b67a1bb0e6ab012a92edb7a86c22d30f6d9bd94dd281e52
7
- data.tar.gz: 1e79f1bf2eb2976973a0a98e9036392c983b0b0c7966964ab61844c6ad5b79a71cb589809d146a9e55735c1d95d4409b22ca6aa61530165a1685d501ccf0ab2d
6
+ metadata.gz: f6605c462aeeb634fe3342a3befb424fe3a67f31059f486d4c835a3670192962a44f6237f51947629cbe1a27d7a21579c03a48f9c98e22f155821cdb62f1e8c1
7
+ data.tar.gz: e6d2ce8fca0b90b513c686dfc44f8010cfb2aca9cc3be84cdbd08c6fccbbac49727ffbe42805f5a0789496df7b3f68ace624b7c201b30f5ee5305be16af485fa
data/CHANGELOG.md CHANGED
@@ -23,6 +23,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23
23
 
24
24
  ### Removed
25
25
 
26
+ ## [0.3.1] - 12025-04-09
27
+
28
+ ### Added
29
+
30
+ ### Changed
31
+
32
+ - Fixed `Hash#value_where` error when nothing is found
33
+
34
+ ### Removed
35
+
26
36
  ## [0.3.0] - 12025-04-09
27
37
 
28
38
  ### Added
@@ -139,7 +149,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
139
149
 
140
150
  - Added alias `each` to `each_pair` in OpenStruct for better enumerable compatibility
141
151
 
142
- [unreleased]: https://github.com/itsthedevman/everythingrb/compare/v0.3.0...HEAD
152
+ [unreleased]: https://github.com/itsthedevman/everythingrb/compare/v0.3.1...HEAD
153
+ [0.3.1]: https://github.com/itsthedevman/everythingrb/compare/v0.3.0...v0.3.1
143
154
  [0.3.0]: https://github.com/itsthedevman/everythingrb/compare/v0.2.5...v0.3.0
144
155
  [0.2.5]: https://github.com/itsthedevman/everythingrb/compare/v0.2.4...v0.2.5
145
156
  [0.2.4]: https://github.com/itsthedevman/everythingrb/compare/v0.2.3...v0.2.4
@@ -310,7 +310,7 @@ class Hash
310
310
  def value_where(&block)
311
311
  return to_enum(:value_where) if block.nil?
312
312
 
313
- find(&block).last
313
+ find(&block)&.last
314
314
  end
315
315
 
316
316
  #
@@ -7,5 +7,5 @@
7
7
  #
8
8
  module Everythingrb
9
9
  # Current version of the everythingrb gem
10
- VERSION = "0.3.0"
10
+ VERSION = "0.3.1"
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: everythingrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan