diff --git a/CHANGELOG.md b/CHANGELOG.md index fc43eea2..a83ee589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v2.0.1...oxc_resolver-v2.1.0) - 2024-11-20 + +### Added + +- add `Resolver::resolve_tsconfig` API ([#312](https://github.com/oxc-project/oxc-resolver/pull/312)) + +### Fixed + +- don't panic when resolving `/` with `roots` ([#310](https://github.com/oxc-project/oxc-resolver/pull/310)) +- use same UNC path normalization logic with libuv ([#306](https://github.com/oxc-project/oxc-resolver/pull/306)) + +### Other + +- *(deps)* update rust crates to v1.0.215 +- fix symlink test init on windows ([#307](https://github.com/oxc-project/oxc-resolver/pull/307)) + ## [2.0.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v2.0.0...oxc_resolver-v2.0.1) - 2024-11-08 ### Other diff --git a/Cargo.lock b/Cargo.lock index ec90e0ae..6611644e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -676,7 +676,7 @@ dependencies = [ [[package]] name = "oxc_resolver" -version = "2.0.1" +version = "2.1.0" dependencies = [ "cfg-if", "criterion2", diff --git a/Cargo.toml b/Cargo.toml index c1b1ec07..960d9f8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["napi"] resolver = "2" [package] -version = "2.0.1" +version = "2.1.0" name = "oxc_resolver" authors = ["Boshen "] categories = ["development-tools"] diff --git a/npm/package.json b/npm/package.json index a31661fe..408c8503 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "2.0.1", + "version": "2.1.0", "description": "Oxc Resolver Node API", "main": "index.js", "browser": "browser.js",