Skip to content

Commit e8ed7c0

Browse files
committed
Update to 2025c
1 parent 66f9fb6 commit e8ed7c0

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
toolchain:
40-
- "1.81"
4140
- stable
4241
- nightly
4342
versions:
4443
- ""
4544
- "-Zminimal-versions"
45+
include:
46+
- toolchain: "1.81"
47+
versions: "-Zminimal-versions"
4648
steps:
4749
- name: Checkout
4850
uses: actions/checkout@v4
@@ -121,9 +123,13 @@ jobs:
121123

122124
- name: Test (tzdb)
123125
run: cargo miri test --workspace --all-targets
126+
env:
127+
MIRIFLAGS: "-Zmiri-disable-isolation"
124128

125129
- name: Test (testing)
126130
run: cd testing && cargo miri test --workspace --all-targets
131+
env:
132+
MIRIFLAGS: "-Zmiri-disable-isolation"
127133

128134
cross-miri:
129135
runs-on: ubuntu-latest
@@ -151,6 +157,8 @@ jobs:
151157

152158
- name: Test
153159
run: cargo miri test --workspace --target ${{ matrix.target }}
160+
env:
161+
MIRIFLAGS: "-Zmiri-disable-isolation"
154162

155163
doc:
156164
runs-on: ubuntu-latest

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.DELETE_ON_ERROR:
22

3-
TZDB_VERSION := tzdb-2025b
3+
TZDB_VERSION := tzdb-2025c
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

tzdb.tar.lz.sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4f4afca86645ca5564a9d7d3ddc36e6b07c15c1b87cd4edbbcae72c6be4e6154e4ad1966407a7081237550301f1093af53dd8a486effb95f7cf3e5721db47c8f tmp/tzdb-2025b.tar.lz
1+
6fa233d6a884acd24b52c44b2eecf683f9403f44b39dcbe85b1ec92fc11f4daf6ee5143f05332faf9258b8bd8f7ca7d4882e19b1e3d892b4761be43fd4f39d51 tmp/tzdb-2025c.tar.lz

tzdb/Cargo.toml

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

tzdb/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// See the License for the specific language governing permissions and
1515
// limitations under the License.
1616

17-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
17+
#![cfg_attr(docsrs, feature(doc_cfg))]
1818
#![allow(unknown_lints)]
1919
#![forbid(unsafe_code)]
2020
#![warn(absolute_paths_not_starting_with_crate)]

tzdb_data/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tzdb_data"
3-
version = "0.2.2"
3+
version = "0.2.3"
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 e2c3697 to 29b7194

0 commit comments

Comments
 (0)