diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbb8839..df0421d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,8 +134,6 @@ jobs: target: - aarch64-unknown-linux-gnu - i586-unknown-linux-gnu - - mipsel-unknown-linux-gnu - - mips64el-unknown-linux-gnuabi64 - powerpc-unknown-linux-gnu - powerpc64-unknown-linux-gnu - powerpc64le-unknown-linux-gnu diff --git a/CHANGELOG.md b/CHANGELOG.md index 242a6e2..e295da3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changes between the versions +### 0.6.0 (2023-12-29) + +* Unchanged stable release + ### 0.6.0-pre.1 (2023-12-27) * Make `iana_time_zone` inclusion optional diff --git a/Cargo.toml b/Cargo.toml index a683708..223d77f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tzdb" -version = "0.6.0-pre.1" +version = "0.6.0" edition = "2018" authors = ["René Kijewski "] repository = "https://github.com/Kijewski/tzdb" diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 5ef8638..300bb55 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" publish = false [dependencies] -tzdb = { version = "0.6.0-pre.1", path = ".." } +tzdb = { version = "0.6.0", path = ".." } [dev-dependencies] criterion = { version = "0.5", default-features = false } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 4847a81..bc4dcf9 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" cargo-fuzz = true [dependencies] -tzdb = { version = "0.6.0-pre.1", path = ".." } +tzdb = { version = "0.6.0", path = ".." } afl = { version = "0.15", optional = true } honggfuzz = { version = "0.5", optional = true } diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 08c47f2..a333a60 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" publish = false [dependencies] -tzdb = { version = "0.6.0-pre.1", path = ".." } +tzdb = { version = "0.6.0", path = ".." } proptest = "1.2.0" structmeta = "0.2.0"