Skip to content

Commit fee6a8b

Browse files
committed
2025a
1 parent d523d2a commit fee6a8b

File tree

10 files changed

+11
-12
lines changed

10 files changed

+11
-12
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ jobs:
164164
uses: dtolnay/rust-toolchain@master
165165
with:
166166
toolchain: nightly
167-
components: miri
168167

169168
- run: cargo doc --workspace --all-features --no-deps
170169
env:

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.DELETE_ON_ERROR:
22

3-
TZDB_VERSION := tzdb-2024b
3+
TZDB_VERSION := tzdb-2025a
44

55
tzdb_data/src/generated/mod.rs: tmp/${TZDB_VERSION}/usr/share/zoneinfo/ tzdb.tar.lz.sha
66
cd make-tzdb && cargo r -- ../$(@D) ../$< ../tzdb.tar.lz.sha

examples/current-time/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use std::env::args;
44
use std::process::exit;
55

6-
use tzdb::{local_tz, now, time_zone, tz_by_name, TZ_NAMES};
6+
use tzdb::{TZ_NAMES, local_tz, now, time_zone, tz_by_name};
77

88
pub fn main() -> Result<(), now::NowError> {
99
let mut args = args().fuse();

make-tzdb/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ publish = false
1010

1111
[dependencies]
1212
anyhow = "1.0.88"
13-
convert_case = "0.6.0"
13+
convert_case = "0.7.0"
1414
indexmap = "2.5.0"
15-
itertools = "0.13.0"
15+
itertools = "0.14.0"
1616
ron = "0.8.1"
1717
serde = { version = "1.0.210", features = ["derive"] }
1818
subprocess = "0.2.9"

rustfmt.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
combine_control_expr = false
2-
edition = "2021"
2+
edition = "2018"
3+
style_edition = "2024"
34
format_macro_matchers = true
45
match_block_trailing_comma = true
56
imports_granularity = "Module"
@@ -11,4 +12,3 @@ group_imports = "StdExternalCrate"
1112
unstable_features = true
1213
use_field_init_shorthand = true
1314
use_try_shorthand = true
14-
style_edition = "2021"

tzdb.tar.lz.sha

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
72446e5cf445515512437c8deaae3063b093aab9620d6441cafaa9b3b71603c857f7ba53557579595788bbc901cd6142404b4db6b0e9f2b23d57b2b3cbc837a8 tmp/tzdb-2024b.tar.lz
1+
1e8c4e141158d63ca5c39babc9d18c32df14e2e59bc7649a7fed8c3e577f7b175bafa43883cf351139ff198515f5f8c22b1418e2ac7efb7f837faa8f61d2574d tmp/tzdb-2025a.tar.lz

tzdb/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pub mod changelog;
9898
pub mod now;
9999

100100
#[doc(no_inline)]
101-
pub use tzdb_data::{time_zone, TZ_NAMES, VERSION, VERSION_HASH};
101+
pub use tzdb_data::{TZ_NAMES, VERSION, VERSION_HASH, time_zone};
102102

103103
/// Find a time zone by name, e.g. `"Europe/Berlin"` (case-insensitive)
104104
///

tzdb_data/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tzdb_data"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
authors = ["René Kijewski <crates.io@k6i.de>"]
66
repository = "https://github.com/Kijewski/tzdb"

tzdb_data/src/generated

Submodule generated updated from e04be62 to 9bfec30

tzdb_data/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
mod generated;
5252

5353
#[doc(inline)]
54-
pub use crate::generated::{time_zone, TZ_NAMES, VERSION, VERSION_HASH};
54+
pub use crate::generated::{TZ_NAMES, VERSION, VERSION_HASH, time_zone};
5555

5656
/// Find a time zone by name, e.g. `b"Europe/Berlin"` (case-insensitive)
5757
///

0 commit comments

Comments
 (0)