From 884f79deef8a6f88ed626e635c187d467b69eee5 Mon Sep 17 00:00:00 2001 From: Tpt Date: Tue, 2 Jan 2024 11:10:22 +0100 Subject: [PATCH] Releases v0.2.3-alpha.1 --- .github/workflows/build.yml | 25 ++++++++----------------- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- 3 files changed, 16 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a2022f..33ae5b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,16 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: rustup update && rustup component add clippy - - uses: Swatinem/rust-cache@v2 - - run: cargo clippy --all-targets - - run: cargo clippy --all-targets --all-features - - clippy_msrv: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: rustup update && rustup override set 1.70.0 && rustup component add clippy + - run: rustup update && rustup override set 1.74.1 && rustup component add clippy - uses: Swatinem/rust-cache@v2 - run: cargo clippy --all-targets -- -D warnings -D clippy::all - run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::all @@ -45,22 +36,22 @@ jobs: - run: cargo build --all-features - run: cargo test --verbose - run: cargo test --verbose --all-features - env: - RUST_BACKTRACE: 1 - rustdoc: + test_msv: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: rustup update + - run: rustup update && rustup override set 1.70.0 && rustup toolchain install nightly - uses: Swatinem/rust-cache@v2 - - run: cargo doc --all-features --no-deps + - run: cargo +nightly update -Z direct-minimal-versions + - run: cargo test + - run: cargo test --all-features - rustdoc_msrv: + rustdoc: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: rustup update && rustup override set 1.70.0 + - run: rustup update && rustup override set 1.74.1 - uses: Swatinem/rust-cache@v2 - run: cargo doc --all-features --no-deps env: diff --git a/CHANGELOG.md b/CHANGELOG.md index d321cf4..d834500 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.2.3-alpha.1] - 2024-01-02 + +### Added +- `_unchecked` methods for faster parsing/resolving if the IRI is known to be valid. + + ## [0.2.2] - 2022-03-27 ### Added diff --git a/Cargo.toml b/Cargo.toml index df3e447..8ed0a5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxiri" -version = "0.2.2" +version = "0.2.3-alpha.1" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.60" [dependencies] -serde = { version = "1", optional = true } +serde = { version = "1.0.166", optional = true } [dev-dependencies] codspeed-criterion-compat = "2.3.3"