Skip to content

Commit f0d5299

Browse files
committed
Update to 2026a
1 parent 4bb3ad8 commit f0d5299

8 files changed

Lines changed: 18 additions & 32 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424

2525
jobs:
2626
fmt:
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-24.04
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v4
@@ -51,7 +51,7 @@ jobs:
5151
- ""
5252
- "-Zminimal-versions"
5353

54-
runs-on: ubuntu-20.04
54+
runs-on: ubuntu-24.04
5555
steps:
5656
- name: Checkout
5757
uses: actions/checkout@v4
@@ -73,7 +73,7 @@ jobs:
7373
- run: cargo clippy --workspace --all-targets -- -D warnings
7474

7575
clippy-pedantic:
76-
runs-on: ubuntu-20.04
76+
runs-on: ubuntu-24.04
7777
steps:
7878
- name: Checkout
7979
uses: actions/checkout@v4
@@ -88,7 +88,7 @@ jobs:
8888
- run: cargo clippy --workspace --all-targets -- -D clippy::pedantic
8989

9090
test:
91-
runs-on: ubuntu-20.04
91+
runs-on: ubuntu-24.04
9292
steps:
9393
- name: Checkout
9494
uses: actions/checkout@v4
@@ -108,7 +108,7 @@ jobs:
108108

109109
miri:
110110
name: "Miri"
111-
runs-on: ubuntu-20.04
111+
runs-on: ubuntu-24.04
112112
steps:
113113
- name: Checkout
114114
uses: actions/checkout@v4
@@ -138,7 +138,7 @@ jobs:
138138
- powerpc64-unknown-linux-gnu
139139
- powerpc64le-unknown-linux-gnu
140140

141-
runs-on: ubuntu-20.04
141+
runs-on: ubuntu-24.04
142142
steps:
143143
- name: Checkout
144144
uses: actions/checkout@v4
@@ -156,7 +156,7 @@ jobs:
156156
run: cargo miri test --workspace --target ${{ matrix.target }}
157157

158158
doc:
159-
runs-on: ubuntu-20.04
159+
runs-on: ubuntu-24.04
160160
steps:
161161
- name: Checkout
162162
uses: actions/checkout@v4
@@ -174,7 +174,7 @@ jobs:
174174
RUSTDOCFLAGS: -D warnings --cfg docsrs
175175

176176
audit:
177-
runs-on: ubuntu-20.04
177+
runs-on: ubuntu-24.04
178178
steps:
179179
- name: Checkout
180180
uses: actions/checkout@v4
@@ -191,7 +191,7 @@ jobs:
191191

192192
devskim:
193193
name: DevSkim
194-
runs-on: ubuntu-20.04
194+
runs-on: ubuntu-24.04
195195
permissions:
196196
actions: read
197197
contents: read

tzdb_data/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tzdb_data"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2018"
55
authors = ["René Kijewski <crates.io@k6i.de>"]
66
repository = "https://github.com/Kijewski/tzdb"
@@ -9,10 +9,10 @@ license = "MIT-0 OR MIT OR Apache-2.0"
99
keywords = ["timezone", "no_std"]
1010
categories = ["date-and-time", "no-std"]
1111
readme = "README.md"
12-
# rust-version = "1.56"
12+
rust-version = "1.56"
1313

1414
[dependencies]
15-
tz-rs = { version = "^0.6.14", default-features = false, features = ["const"] }
15+
tz-rs = { version = "0.6.14", default-features = false, features = ["const"] }
1616

1717
[package.metadata.docs.rs]
1818
all-features = true

tzdb_data/LICENSE.Apache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./src/generated/LICENSE.Apache

tzdb_data/LICENSE.MIT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./src/generated/LICENSE.MIT

tzdb_data/LICENSE.MIT-0

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./src/generated/LICENSE.MIT-0

tzdb_data/LICENSE.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

tzdb_data/src/generated

Submodule generated updated from 29b7194 to c38fad0

tzdb_data/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
// SPDX-License-Identifier: MIT-0
2-
//
3-
// Copyright 2022-2024 René Kijewski <crates.io@k6i.de>
1+
// SPDX-License-Identifier: MIT-0 OR MIT OR Apache-2.0
2+
// SPDX-FileCopyrightText: 2022-2026 René Kijewski <crates.io@k6i.de>
43

54
#![cfg_attr(docsrs, feature(doc_cfg))]
65
#![allow(unknown_lints)]

0 commit comments

Comments
 (0)