Skip to content

Commit

Permalink
Update to 2022g (0.4.x) (#147)
Browse files Browse the repository at this point in the history
Update to 2022g
  • Loading branch information
Kijewski authored Nov 30, 2022
1 parent 82f4c1f commit a55a593
Show file tree
Hide file tree
Showing 12 changed files with 2,825 additions and 2,809 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.4.9 (2022-11-30)

* Update to [Time Zone Database 2022g](https://mm.icann.org/pipermail/tz-announce/2022-November/000076.html)

### 0.4.8 (2022-10-29)

* Update to [Time Zone Database 2022f](https://mm.icann.org/pipermail/tz-announce/2022-October/000075.html)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tzdb"
version = "0.4.8"
version = "0.4.9"
edition = "2021"
authors = ["René Kijewski <crates.io@k6i.de>"]
repository = "https://github.com/Kijewski/tzdb"
Expand Down
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-2022f
TZDB_VERSION := tzdb-2022g

src/generated/mod.rs: tmp/${TZDB_VERSION}/usr/share/zoneinfo/
cargo r --package make-tzdb --bin make-tzdb -- $(@D) $<
Expand Down
7 changes: 1 addition & 6 deletions 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 2022f (released 2022-10-28).
currently in the version 2022g (released 2022-11-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 @@ -53,8 +53,3 @@ let current_time = tzdb::now::in_named_or(tzdb::time_zone::GMT, "Some/City")?;
* `alloc` <sup>(enabled by default, enabled by `std`)</sup> – enable features that need the standard library `alloc`

* `fallback` <sup>(enabled by default)</sup> — compile for unknown target platforms, too

## Git cloning

The `main` branch gets squashed regularily to keep the size of the repository at a maintainable size.
To get the history until then, please refer to the id in the initial commit.
1 change: 1 addition & 0 deletions src/changelog.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#![doc = include_str!("../CHANGELOG.md")]
Loading

0 comments on commit a55a593

Please sign in to comment.