maxmind-geoip2 0.7.0 → 1.0.0

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: 499989805675afe47c253b34e265f655f79988d6fdbbb26a15c6a1147f512462
4
- data.tar.gz: e39f9567d2ad3e8a5ca07f5f3faa6476368d27359ae2283e23c6b2aa31f11844
3
+ metadata.gz: 874135d664c0af2e82c184ce30fffbdfe72bb6badc1aa53ee0ec5eba626e5a1d
4
+ data.tar.gz: 7aec662f3893322c983f647545f4a155b27bda20b7fd6349201fc386264bdc88
5
5
  SHA512:
6
- metadata.gz: 1dcc366745377b4de4189813d2e264010e3f2794b67f6e10a404285d585dd65f76decd7c711accf0fbbe7ca2c68c1063e9e9a168fd73e1f7699cbcbd54c0699d
7
- data.tar.gz: 8b76fb4b2e4217bbba2a9d21f108c604406f17c335cb90959acd83808d93f664d4825d7da1aa49e9d6d5fbf266c91473746ee79cbbeabb7b64d49e0e0a9e6fee
6
+ metadata.gz: 3b5d57920b467ccae6144b6f4aca8266721124481917014025390f02f6728138b704513137596593226506f82d554cf77afb215921a13fa8622e1b4e3a4f8b43
7
+ data.tar.gz: 28be946c7ea163e61b641029f3094de7b47ac2ce8bec6d1c68f9ddd5d084f55419403daeb30762fce3d0346ea0fb083de0d946621f6d659eabe03cafe3c3d0dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0 (2021-05-14)
4
+
5
+ * Ruby 2.4 is no longer supported. If you're using Ruby 2.4, please use
6
+ version 0.7.0 of this gem.
7
+ * Expand accepted versions of the `http` gem to include 5.0+.
8
+ * Bump version to 1.0.0 since we have been at 0.x for over a year. There is
9
+ no breaking change.
10
+
3
11
  ## 0.7.0 (2021-03-24)
4
12
 
5
13
  * Ensured defaults are set when creating a `MaxMind::GeoIP2::Client` in the
data/README.md CHANGED
@@ -329,7 +329,7 @@ client API, please see [our support page](https://www.maxmind.com/en/support).
329
329
 
330
330
  ## Requirements
331
331
 
332
- This code requires Ruby version 2.4 or higher.
332
+ This code requires Ruby version 2.5 or higher.
333
333
 
334
334
  ## Contributing
335
335
 
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
5
5
  s.files = Dir['**/*']
6
6
  s.name = 'maxmind-geoip2'
7
7
  s.summary = 'A gem for interacting with the GeoIP2 webservices and databases.'
8
- s.version = '0.7.0'
8
+ s.version = '1.0.0'
9
9
 
10
10
  s.description = 'A gem for interacting with the GeoIP2 webservices and databases. MaxMind provides geolocation data as downloadable databases as well as through a webservice.'
11
11
  s.email = 'support@maxmind.com'
@@ -18,10 +18,10 @@ Gem::Specification.new do |s|
18
18
  'homepage_uri' => 'https://github.com/maxmind/GeoIP2-ruby',
19
19
  'source_code_uri' => 'https://github.com/maxmind/GeoIP2-ruby',
20
20
  }
21
- s.required_ruby_version = '>= 2.4.0'
21
+ s.required_ruby_version = '>= 2.5.0'
22
22
 
23
23
  s.add_runtime_dependency 'connection_pool', ['~> 2.2']
24
- s.add_runtime_dependency 'http', ['~> 4.3']
24
+ s.add_runtime_dependency 'http', '>= 4.3', '< 6.0'
25
25
  s.add_runtime_dependency 'maxmind-db', ['~> 1.1']
26
26
 
27
27
  s.add_development_dependency 'minitest'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maxmind-geoip2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Storey
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-24 00:00:00.000000000 Z
11
+ date: 2021-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -28,16 +28,22 @@ dependencies:
28
28
  name: http
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '4.3'
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '6.0'
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: '4.3'
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '6.0'
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: maxmind-db
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -239,7 +245,7 @@ metadata:
239
245
  documentation_uri: https://www.rubydoc.info/gems/maxmind-geoip2
240
246
  homepage_uri: https://github.com/maxmind/GeoIP2-ruby
241
247
  source_code_uri: https://github.com/maxmind/GeoIP2-ruby
242
- post_install_message:
248
+ post_install_message:
243
249
  rdoc_options: []
244
250
  require_paths:
245
251
  - lib
@@ -247,16 +253,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
247
253
  requirements:
248
254
  - - ">="
249
255
  - !ruby/object:Gem::Version
250
- version: 2.4.0
256
+ version: 2.5.0
251
257
  required_rubygems_version: !ruby/object:Gem::Requirement
252
258
  requirements:
253
259
  - - ">="
254
260
  - !ruby/object:Gem::Version
255
261
  version: '0'
256
262
  requirements: []
257
- rubyforge_project:
258
- rubygems_version: 2.7.6.2
259
- signing_key:
263
+ rubygems_version: 3.2.15
264
+ signing_key:
260
265
  specification_version: 4
261
266
  summary: A gem for interacting with the GeoIP2 webservices and databases.
262
267
  test_files: []