Skip to content

Commit

Permalink
Update to 2022f
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Oct 29, 2022
1 parent df6fd72 commit 4b3151a
Show file tree
Hide file tree
Showing 9 changed files with 1,159 additions and 1,505 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changes between the versions

### 0.2.12

* Update to [Time Zone Database 2022f](https://mm.icann.org/pipermail/tz-announce/2022-October/000075.html)

### 0.2.11

* Update to [Time Zone Database 2022e](https://mm.icann.org/pipermail/tz-announce/2022-October/000074.html)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.DELETE_ON_ERROR:

TZDB_VERSION := tzdb-2022e
TZDB_VERSION := tzdb-2022f

tzdb/src/generated.rs: tmp/${TZDB_VERSION}/usr/share/zoneinfo/
cargo r --bin make-tzdb -- $@ $<
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Static time zone information for [tz-rs](https://crates.io/crates/tz-rs).

This crate provides all time zones found in the [Time Zone Database](https://www.iana.org/time-zones),
currently in the version 2022e (released 2022-10-11).
currently in the version 2022f (released 2022-10-29).

See the documentation for a full list the the contained time zones:
<https://docs.rs/tzdb/latest/tzdb/time_zone/index.html>
Expand Down
1 change: 0 additions & 1 deletion tzdb-2022e.tar.lz.sha

This file was deleted.

1 change: 1 addition & 0 deletions tzdb-2022f.tar.lz.sha
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1dd9f8fc3e9fa113a72010b9bceb04c7540b1175801fbd15b591a6bca9400503c6683a4c89f83e08d77f5b78624a005113a8fc428c552a2a4a2b8d26de110141 tmp/tzdb-2022f.tar.lz
2 changes: 1 addition & 1 deletion tzdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tzdb"
version = "0.2.11"
version = "0.2.12"
edition = "2021"
authors = ["René Kijewski <crates.io@k6i.de>"]
repository = "https://github.com/Kijewski/tzdb"
Expand Down
2,644 changes: 1,147 additions & 1,497 deletions tzdb/src/generated.rs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions tzdb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
//! Static time zone information for [tz-rs](https://crates.io/crates/tz-rs).
//!
//! This crate provides all time zones found in the [Time Zone Database](https://www.iana.org/time-zones),
//! currently in the version 2022e (released 2022-10-11).
//! currently in the version 2022f (released 2022-10-29).
//!
//! See the documentation for a full list the the contained time zones:
//! <https://docs.rs/tzdb/latest/tzdb/time_zone/index.html>
Expand Down Expand Up @@ -95,10 +95,10 @@ pub mod changelog {
}

/// The version of the source Time Zone Database
pub const VERSION: &str = "2022e";
pub const VERSION: &str = "2022f";

/// The SHA512 hash of the source Time Zone Database (using the "Complete Distribution")
pub const VERSION_HASH: &str = "6b316ac2d9dfe615685164accd126ee29c363fafe0d3483ac155644c5693693758e7315aa9f55c0a3e3c027d38f1125462d84a13fd424458b86f6be33f153cc7";
pub const VERSION_HASH: &str = "1dd9f8fc3e9fa113a72010b9bceb04c7540b1175801fbd15b591a6bca9400503c6683a4c89f83e08d77f5b78624a005113a8fc428c552a2a4a2b8d26de110141";

/// Find a time zone by name, e.g. `"Europe/Berlin"` (case-insensitive)
#[cfg(feature = "by-name")]
Expand Down

0 comments on commit 4b3151a

Please sign in to comment.