Skip to content

Commit

Permalink
Releases v0.2.3-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tpt committed Jan 2, 2024
1 parent 9b6c86e commit 884f79d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 19 deletions.
25 changes: 8 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand 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:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxiri"
version = "0.2.2"
version = "0.2.3-alpha.1"
authors = ["Tpt <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -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"
Expand Down

0 comments on commit 884f79d

Please sign in to comment.