diff --git a/CHANGELOG.md b/CHANGELOG.md index 6086d410..80713ad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v3.0.3...oxc_resolver-v4.0.0) - 2025-01-20 + +### Features + +- [**breaking**] generic fs cache `type Resolver = ResolverGeneric>` (#358) +- [**breaking**] `PackageJson` and `TsConfig` traits (#360) + +### Performance + +- use papaya instead of dashmap (#356) + ## [3.0.3](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v3.0.2...oxc_resolver-v3.0.3) - 2024-12-14 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index c1544af9..51b3d4f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -647,7 +647,7 @@ dependencies = [ [[package]] name = "oxc_resolver" -version = "3.0.3" +version = "4.0.0" dependencies = [ "cfg-if", "criterion2", diff --git a/Cargo.toml b/Cargo.toml index 509116d0..60efe19b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "oxc_resolver" -version = "3.0.3" +version = "4.0.0" authors = ["Boshen "] categories = ["development-tools"] edition = "2021" diff --git a/npm/package.json b/npm/package.json index 9f99c8bb..4d5ca3da 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "3.0.3", + "version": "4.0.0", "description": "Oxc Resolver Node API", "main": "index.js", "browser": "browser.js",