et-orbi 1.4.0 → 1.4.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: 1fc097e4fc84ec60bd0c5576e2d20e44c8e1f93a25ca54d18705c8a15ac46d15
4
- data.tar.gz: aaf8974a36588b4a339f97fb4ab18ac124d86d189874bb951489788000e4a66e
3
+ metadata.gz: 23d61b780807930002859fac2cfa6db038b85dc78098bcc7b6361663201a1d5c
4
+ data.tar.gz: 768cccba4de4e24ef0e2b7987c80e9de5cf6aa517b4c59a6dde0080dc592ed74
5
5
  SHA512:
6
- metadata.gz: 7bbe86df96ee13a4884f680629d80b3965721d5f78aac42a712aadb18fa7c89160be8679aa3bcc74405cab8bf964e68b67d94efd2a87baf75cdfbe604e4c52c5
7
- data.tar.gz: ba98fd3c1557f4a6c5aa741763c03d82ccf2e0254d751616939406b033392d0b7d34551ed54388e03bcd10df5273203345d75090ee98289c8e3c9c318a1a9490
6
+ metadata.gz: 9608fe91739dfa185d361261b6d18cc10f5aa578f3f5e731b4bca7d44b0edfbfd163c05cae26396fe952f3741bc0bb066091a409aaa27ccf24a3c38b53b3cf0d
7
+ data.tar.gz: ba8d6676b5f0a0c4e3a86903fe937535cd34c75670a2b13fa0753632f18b239ae387bfb5e01d08ceebce4c9436838eb087ffc4f4a2cce82b915a4fafead44f60
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
  # CHANGELOG.md
3
3
 
4
4
 
5
+ ## et-orbi 1.4.1 released 2026-07-31
6
+
7
+ - Use UTC instead of Zulu, thanks Adam Růžička
8
+
9
+
5
10
  ## et-orbi 1.4.0 released 2025-09-28
6
11
 
7
12
  - Rework EoTime #rweek and #rday
data/CREDITS.md CHANGED
@@ -1,6 +1,7 @@
1
1
 
2
2
  # et-orbi credits
3
3
 
4
+ * Adam Růžička https://github.com/adamruzicka gh-50 ETC instead of Zulu
4
5
  * Hugh Kelsey https://github.com/hughkelsey fugit gh-94 rweek/rday rework
5
6
  * Keenan Brock https://github.com/kbrock version parsing and ostruct dep
6
7
  * Benjami Darcet https://github.com/bdarcet https://github.com/floraison/fugit/issues/67 gh-38
data/LICENSE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- Copyright (c) 2017-2025, John Mettraux, jmettraux+flor@gmail.com
2
+ Copyright (c) 2017-2026, John Mettraux, jmettraux+flor@gmail.com
3
3
 
4
4
  Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
 
2
2
  module EtOrbi
3
3
 
4
- VERSION = '1.4.0'
4
+ VERSION = '1.4.1'
5
5
  end
6
6
 
data/lib/et-orbi/zone.rb CHANGED
@@ -8,7 +8,7 @@ module EtOrbi
8
8
  return o if o.is_a?(::TZInfo::Timezone)
9
9
  return nil if o == nil
10
10
  return determine_local_tzone if o == :local
11
- return ::TZInfo::Timezone.get('Zulu') if o == 'Z'
11
+ return ::TZInfo::Timezone.get('UTC') if o == 'Z'
12
12
  return o.tzinfo if o.respond_to?(:tzinfo)
13
13
 
14
14
  o = to_offset(o) if o.is_a?(Numeric)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: et-orbi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mettraux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-28 00:00:00.000000000 Z
11
+ date: 2026-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tzinfo