Skip to content

Commit

Permalink
fix: try to fix missing timezone data when running created binary on …
Browse files Browse the repository at this point in the history
…windows, v1.0.3
  • Loading branch information
HenryJobst committed Dec 28, 2024
1 parent 98618c2 commit 4b34eaf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.0.2
release_name: "ORConverter v1.0.2"
tag_name: v1.0.3
release_name: "ORConverter v1.0.3"
draft: false
prerelease: false

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "http://rubygems.org"
gem "nokogiri", ">= 1.8.5"
gem "i18n", ">= 0.6.6"
gem "ostruct", ">= 0.6.0"
gem "tzinfo", ">= 0.3"
gem "tzinfo", ">= 2.0.6"
gem "logger", ">= 1.1.0"
gem "fiddle", ">= 1.1.6"
gem 'tzinfo-data', '~> 1.2024', '>= 1.2024.2'
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DEPENDENCIES
logger (>= 1.1.0)
nokogiri (>= 1.8.5)
ostruct (>= 0.6.0)
tzinfo (>= 0.3)
tzinfo (>= 2.0.6)
tzinfo-data (~> 1.2024, >= 1.2024.2)

BUNDLED WITH
Expand Down
2 changes: 2 additions & 0 deletions iof_result_list_reader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
require 'tzinfo'
require 'tzinfo/data'

TZInfo::DataSource.set(:ruby)

# @param [Time] base_time
# @param [Float] factor
# @return [Time]
Expand Down

0 comments on commit 4b34eaf

Please sign in to comment.