Skip to content

Commit

Permalink
Expand MIN_GMT_OFFSET (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
omus authored Feb 10, 2025
1 parent aae087d commit 87a2fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TimeZones"
uuid = "f269a46b-ccf7-5d73-abea-4c690281aa53"
authors = ["Curtis Vogt <[email protected]>"]
version = "1.21.1"
version = "1.21.2"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand Down
2 changes: 1 addition & 1 deletion src/tzdata/timeoffset.jl
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Base.show(io::IO, t::TimeOffset) = print(io, t)

# min/max offsets across all zones and all time.
# Note: A warning is given when we find an Olson zone that exceeds these values.
const MIN_GMT_OFFSET = TimeOffset("-15:56:00") # Asia/Manilla
const MIN_GMT_OFFSET = TimeOffset("-15:56:08") # Asia/Manilla as of 2025a
const MAX_GMT_OFFSET = TimeOffset("15:13:42") # America/Metlakatla

# min/max save across all zones/rules and all time.
Expand Down

2 comments on commit 87a2fd7

@omus
Copy link
Member Author

@omus omus commented on 87a2fd7 Feb 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/124749

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.21.2 -m "<description of version>" 87a2fd7c3d08138a502ecdf618a27dfc936e9ddd
git push origin v1.21.2

Please sign in to comment.