tzf 0.2.5 → 0.2.6

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: d4af709de7481a4c7cd59dbe52bd4cb1a03bd0a3d773c25e08753f08066c98ff
4
- data.tar.gz: 0cdd68fd50fb0bc9fc01e31993d483e98f460d39707d36c3038b01162f15f0c0
3
+ metadata.gz: 54e03cf193dcbe5c3ce8959d6c11cb859dabfdb31b4c2b847257edf83eaaca0b
4
+ data.tar.gz: 3d79144dfe81fa63792e8fb4af560974eaf1cb00bddc3731fb04fb0fba09770d
5
5
  SHA512:
6
- metadata.gz: 71fbfe07b2732501783b47e61d5e5da143e4c0ec2fb058db1d2db123ec00f42ae148d9c26a5c13855506fee2706c82c2c91d185d82a9b30ee1c82e3de41a5e9d
7
- data.tar.gz: e3065e82b6fd0b7b81a0d49b4fd6ca93020a4bce61ca912c0e9a5a70fe83811998ea3e3995a14fdb6343be5ac4d4f0d5c7592ce743967a77fc1a83ba11359a5c
6
+ metadata.gz: 0bcf2724e69f7a07112d22c5c6c8517d451b5a7495f04ebc9a41c4f3a76aac0390bc3ca40654037bbd612cd6a4f13504ebf5fc91c3a38fb5d7c97c4ee9b8f69b
7
+ data.tar.gz: 5ac56e90baae63dd46556c84be473ff9b2ec8f538c0042faad175a1d51da4ef11a9bda9cde962a6ef6a58cecaafaef8b2895c5499ee11155c81be7dace5e7e74
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.6] - 2023-02-23
4
+
5
+ - Set min rubygems to [3.4.6](https://github.com/rubygems/rubygems/blob/master/CHANGELOG.md#346--2023-01-31) to address issues with CargoBuilder install path
6
+
3
7
  ## [0.2.5] - 2023-02-23
4
8
 
5
9
  - Update rake compile task and fix CI builds #2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tzf (0.2.5)
4
+ tzf (0.2.6)
5
5
  rb_sys (~> 0.9)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # tzf-rb
2
2
 
3
3
  [![tzf](https://badge.fury.io/rb/tzf.svg)](https://badge.fury.io/rb/tzf)
4
+ ![build](https://github.com/HarlemSquirrel/tzf-rb/actions/workflows/main.yml/badge.svg)
4
5
 
5
6
  Ruby time zone lookup for coordinates using the [tzf-rs](https://github.com/ringsaturn/tzf-rs) Rust library.
6
7
 
data/lib/tzf/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TZF
4
- VERSION = "0.2.5"
4
+ VERSION = "0.2.6"
5
5
  end
data/tzf.gemspec CHANGED
@@ -13,11 +13,12 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://github.com/HarlemSquirrel/tzf-rb"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = ">= 3.0.0"
16
- spec.required_rubygems_version = ">= 3.3.11"
16
+ spec.required_rubygems_version = ">= 3.4.6"
17
17
 
18
+ spec.metadata["bug_tracker_uri"] = "https://github.com/HarlemSquirrel/tzf-rb/issues"
19
+ spec.metadata["changelog_uri"] = "https://github.com/HarlemSquirrel/tzf-rb/blob/main/CHANGELOG.md"
18
20
  spec.metadata["homepage_uri"] = spec.homepage
19
21
  spec.metadata["source_code_uri"] = "https://github.com/HarlemSquirrel/tzf-rb"
20
- spec.metadata["changelog_uri"] = "https://github.com/HarlemSquirrel/tzf-rb/blob/main/CHANGELOG.md"
21
22
 
22
23
  # Specify which files should be added to the gem when it is released.
23
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tzf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin McCormack
@@ -83,9 +83,10 @@ homepage: https://github.com/HarlemSquirrel/tzf-rb
83
83
  licenses:
84
84
  - MIT
85
85
  metadata:
86
+ bug_tracker_uri: https://github.com/HarlemSquirrel/tzf-rb/issues
87
+ changelog_uri: https://github.com/HarlemSquirrel/tzf-rb/blob/main/CHANGELOG.md
86
88
  homepage_uri: https://github.com/HarlemSquirrel/tzf-rb
87
89
  source_code_uri: https://github.com/HarlemSquirrel/tzf-rb
88
- changelog_uri: https://github.com/HarlemSquirrel/tzf-rb/blob/main/CHANGELOG.md
89
90
  rubygems_mfa_required: 'true'
90
91
  post_install_message:
91
92
  rdoc_options: []
@@ -100,9 +101,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
101
  requirements:
101
102
  - - ">="
102
103
  - !ruby/object:Gem::Version
103
- version: 3.3.11
104
+ version: 3.4.6
104
105
  requirements: []
105
- rubygems_version: 3.3.26
106
+ rubygems_version: 3.4.7
106
107
  signing_key:
107
108
  specification_version: 4
108
109
  summary: Ruby time zone lookup interface using tzf-rs