diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eff6133..22328f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,7 @@ jobs: profile: minimal toolchain: ${{ matrix.rust }} target: ${{ matrix.target }} - - run: cargo test ${{ matrix.flags }} + - run: cargo test ${{ matrix.flags }} ${{ matrix.target != 0 && --target matrix.target }} examples: name: "Run examples using Rust ${{ matrix.rust }} (${{ matrix.os }})" runs-on: ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 82cbe8e..ae66574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2024-02-15 + +* Support `wasm` family for compilation + ## [0.7.0] - 2023-11-04 * Support `no_std` environments, when `default-features = false` is set for the crate diff --git a/Cargo.toml b/Cargo.toml index 9f9c972..2a03d4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "typed-path" description = "Provides typed variants of Path and PathBuf for Unix and Windows" -version = "0.7.0" +version = "0.7.1" edition = "2021" authors = ["Chip Senkbeil "] categories = ["development-tools", "filesystem", "os"]