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 +4 -4
- data/.travis.yml +0 -1
- data/CHANGELOG.md +6 -0
- data/lib/loqate/phone/phone_number_validation.rb +1 -1
- data/lib/loqate/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d8b2153d2e4dc1f2a54ed028b256f531e8faf42061b31b359e58295617b942f
|
4
|
+
data.tar.gz: ea65ed9dc5b6e0ff70359781ac5e447c98aa5bb1edc261ebb0b2e929644a9011
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce3ea4757fb605b795bdeb136f1cba611b1adc6240aab59863ee7e032d5df0ae97fe1f91bf48abc0ea1668a014d3f5ce387b3bc40b8297b566607c58a4036540
|
7
|
+
data.tar.gz: ed9f75aa997bc9f3ec7fc11f86610f2e479dd2cc224183ea9a7ca5bfba56437ca73e21da59d26ab53224eac3c1b17dd87aae70dab21ea05dc2eeb4cbde018c75
|
data/.travis.yml
CHANGED
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.
|
data/lib/loqate/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2021-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-struct
|