loqate 0.11.0 → 0.11.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: 3d7c198002f31ce942c68c3da5575e690249ca78cfb08b446634a9729a7ef7da
4
- data.tar.gz: e377639de2c6cb66c0a453283fe43b7260478126da53247c3f300196666b78bc
3
+ metadata.gz: 1d8b2153d2e4dc1f2a54ed028b256f531e8faf42061b31b359e58295617b942f
4
+ data.tar.gz: ea65ed9dc5b6e0ff70359781ac5e447c98aa5bb1edc261ebb0b2e929644a9011
5
5
  SHA512:
6
- metadata.gz: ccf1f88121d5cd1d0f845957f55e2ccd3ceccb7669e9eedd45b29379b67232d834f33b969ff77702b1c423819cbba3104c0cf339d764cf8b30f6254a00de5e40
7
- data.tar.gz: 799be036d0c165420b59ab349e8ce1440d716a11091ba96b6a754ee604f6d92c3e5054261e5c93005ac9841eeeb3b8d81f100be938b9228ba03051c8428f9984
6
+ metadata.gz: ce3ea4757fb605b795bdeb136f1cba611b1adc6240aab59863ee7e032d5df0ae97fe1f91bf48abc0ea1668a014d3f5ce387b3bc40b8297b566607c58a4036540
7
+ data.tar.gz: ed9f75aa997bc9f3ec7fc11f86610f2e479dd2cc224183ea9a7ca5bfba56437ca73e21da59d26ab53224eac3c1b17dd87aae70dab21ea05dc2eeb4cbde018c75
data/.travis.yml CHANGED
@@ -7,7 +7,6 @@ rvm:
7
7
  - 2.5
8
8
  - 2.6
9
9
  - 2.7
10
- - jruby
11
10
 
12
11
  before_install: gem install bundler -v 2.1.4
13
12
 
data/CHANGELOG.md CHANGED
@@ -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/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.11.1] - 2021-04-26
8
+ ## Fixed
9
+ - Fixed the allowed values of the enum `Phone::PhoneNumberValidation::IsValid` by adding `Maybe` as a valid value.
10
+
7
11
  ## [0.11.0] - 2021-01-29
8
12
  ## Changed
9
13
  - Updated `bundler` to version `2.1`
@@ -130,6 +134,8 @@ and will always return `false`.
130
134
  - Initial core functionality
131
135
  - Codebase maintenance tools
132
136
 
137
+ [0.11.1]: https://github.com/wilsonsilva/loqate/compare/v0.11.0...v0.11.1
138
+ [0.11.0]: https://github.com/wilsonsilva/loqate/compare/v0.10.4...v0.11.0
133
139
  [0.10.4]: https://github.com/wilsonsilva/loqate/compare/v0.10.3...v0.10.4
134
140
  [0.10.3]: https://github.com/wilsonsilva/loqate/compare/v0.10.2...v0.10.3
135
141
  [0.10.2]: https://github.com/wilsonsilva/loqate/compare/v0.10.1...v0.10.2
@@ -2,7 +2,7 @@ module Loqate
2
2
  module Phone
3
3
  # Result of a phone number validation.
4
4
  class PhoneNumberValidation < Dry::Struct
5
- IsValid = Types::Strict::String.enum('Yes', 'No', 'Unknown')
5
+ IsValid = Types::Strict::String.enum('Yes', 'No', 'Unknown', 'Maybe')
6
6
  NumberType = Types::Strict::String.enum('Mobile', 'Landline', 'Voip', 'Unknown')
7
7
 
8
8
  # The recipient phone number in international format.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Loqate
4
- VERSION = '0.11.0'
4
+ VERSION = '0.11.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: loqate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wilson Silva
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-29 00:00:00.000000000 Z
11
+ date: 2021-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-struct