dry-validation-matchers 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0ee4b633e751ffaa7fdafb364f58990e9ebf09a952b87075a77ad36c84eb278
4
- data.tar.gz: 2cbeb8982b547830905e1b4e7783e7bad557138a47c0ec5160e25c66d1ac95bc
3
+ metadata.gz: a2a26d1b25ccab7d54eb5b34a6de7196fd56ffcf9c7b13ccc3baca67c2cf0f73
4
+ data.tar.gz: '09bd7d53cbb6df2aff01c71379fd70f55511fdc9c7c98d53f268d3048aecda3c'
5
5
  SHA512:
6
- metadata.gz: d9e3c8cb7a06630dbc433284bb9e8e720a5b80b4ad11b59c7f134e406b5355fef5e7ff1586785d815a83e78b931ac69424ba1ecba9f17b5ead299f408dab8328
7
- data.tar.gz: 442e5b9d788d9f01422d4d56d457e65bb98d89360f1dc5133f8550410c183443287bf01944f1448794961c30607e88a8be82af3386429621fc685013f8bdca2e
6
+ metadata.gz: 66aeec4d694da72968e780169b2b5d2e4e1d135584bfcc0705feaaaa5f3b58f2e440e690bba13218ba436e9a04e3fc89747da431cfd4e23c40420af2d0485c04
7
+ data.tar.gz: 4323d57686a976430fe2a3b1636d1442572c3e2278c844e40e5bd30e87e4a84c319274d4f69e59a143baa21958bfda22172fdc41402b17ef53660f0cfd2500a4
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## [1.2.1] - 2019-11-22
8
+ ### Fixed
9
+ - Deprecation messages re BigDecimal()
10
+
7
11
  ## [1.2.0] - 2019-11-17
8
12
  ### Added
9
13
  - Add support for checking that the macro is used through the method `macro_use?`
@@ -16,7 +16,7 @@ module Dry::Validation::Matchers
16
16
  message: "must be a float",
17
17
  },
18
18
  decimal: {
19
- test_value: BigDecimal.new("41.5"),
19
+ test_value: BigDecimal("41.5"),
20
20
  message: "must be a decimal",
21
21
  },
22
22
  bool: {
@@ -1,7 +1,7 @@
1
1
  module Dry
2
2
  module Validation
3
3
  module Matchers
4
- VERSION = "1.2.0"
4
+ VERSION = "1.2.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-validation-matchers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-11-18 00:00:00.000000000 Z
11
+ date: 2019-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-validation