dry-types 1.8.1 → 1.8.2

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: 7eabdf3213f4ac527e5976f6e86f17dfa49f0a576ea91ddb4f17c32aca83aef7
4
- data.tar.gz: 8dcfa5ad9142130bfee2e4c4a28ecba57b880be3528fa5e720878a092c259aa4
3
+ metadata.gz: fb0a9688e1ae1fe5305d551dcedccbfa0dfca45a7949e5d357ad98edf0f4c8ef
4
+ data.tar.gz: a7dd52e7ff33aa2a1de7249bd2f03445db8b4632894e65cb8a70c1bc06dacbc5
5
5
  SHA512:
6
- metadata.gz: 14136624972936684ea39a590d1ecf8a90bd9fdd082451f61b1b6f5d68dbba2d91747b4fc400d29f5fdf6261f0035101e08abf248c785a93628fd0c55457787c
7
- data.tar.gz: 05ab43939a70694eeaf9e279f75eb1263f378e042009fbc1b5963025b1a3f99c6d0a481a33b087df10bebf090178a1a162db1a522f7a8e68250906cf8b77215b
6
+ metadata.gz: cb5a3673334cddda6541c1ec24a91343ce3eb4f50d4ccf4ca625350d5b0a81863fc2a75429995ff3332e89f1ac5c4eda183c5cee1b9522c8eb35828e718d309a
7
+ data.tar.gz: 217af029ec68360e982181764399ff9720ed0f2315aac2f671249ae9e91e4c0e18f3341a0580abdaf5e06bd490fab744dbafcffc1528fbc59587e869d487d7b7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
+ ## 1.8.2 2025-01-31
4
+
5
+
6
+ ### Fixed
7
+
8
+ - Syntax errors on 3.3.0 (@flash-gordon, see #478)
9
+
10
+
11
+ [Compare v1.8.1...v1.8.2](https://github.com/dry-rb/dry-types/compare/v1.8.1...v1.8.2)
12
+
3
13
  ## 1.8.1 2025-01-21
4
14
 
5
15
 
data/lib/dry/types/sum.rb CHANGED
@@ -29,8 +29,8 @@ module Dry
29
29
  # @return [Object]
30
30
  #
31
31
  # @api private
32
- def call_safe(input, &)
33
- left.call_safe(input) { right.call_safe(input, &) }
32
+ def call_safe(input, &block)
33
+ left.call_safe(input) { right.call_safe(input, &block) }
34
34
  end
35
35
 
36
36
  # @param [Object] input
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dry
4
4
  module Types
5
- VERSION = "1.8.1"
5
+ VERSION = "1.8.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1
4
+ version: 1.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-21 00:00:00.000000000 Z
11
+ date: 2025-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal