diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a8cadf8..fbf06026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.2.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v11.2.0...oxc_resolver-v11.2.1) - 2025-06-22 + +### Bug Fixes + +- *(napi)* ensure `pnp_manifest` is included with `yarn_pnp` feature ([#555](https://github.com/oxc-project/oxc-resolver/pull/555)) + +### Documentation + +- update `alias` and `fallback` options type and description ([#557](https://github.com/oxc-project/oxc-resolver/pull/557)) + +### Chore + +- *(deps)* lock file maintenance rust crates ([#563](https://github.com/oxc-project/oxc-resolver/pull/563)) +- *(deps)* lock file maintenance rust crates ([#552](https://github.com/oxc-project/oxc-resolver/pull/552)) + ## [11.2.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v11.1.0...oxc_resolver-v11.2.0) - 2025-06-05 ### Features diff --git a/Cargo.lock b/Cargo.lock index 03d8bb23..417c452c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -725,7 +725,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "oxc_resolver" -version = "11.2.0" +version = "11.2.1" dependencies = [ "cfg-if", "criterion2", @@ -749,7 +749,7 @@ dependencies = [ [[package]] name = "oxc_resolver_napi" -version = "11.2.0" +version = "11.2.1" dependencies = [ "mimalloc-safe", "napi", diff --git a/Cargo.toml b/Cargo.toml index 857e89bc..5392e021 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,11 +16,11 @@ rust-version = "1.85.0" description = "ESM / CJS module resolution" [workspace.dependencies] -oxc_resolver = { version = "11.2.0", path = "." } +oxc_resolver = { version = "11.2.1", path = "." } [package] name = "oxc_resolver" -version = "11.2.0" +version = "11.2.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/Cargo.toml b/napi/Cargo.toml index db6f98fc..c6b98bd8 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_resolver_napi" -version = "11.2.0" +version = "11.2.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/package.json b/package.json index e4c12128..519dc81d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "11.2.0", + "version": "11.2.1", "license": "MIT", "description": "Oxc Resolver Node API", "packageManager": "pnpm@10.12.1",