From ce5ad91c41572a4175b07b50229bd13986a580dc Mon Sep 17 00:00:00 2001 From: oxc-bot Date: Fri, 13 Dec 2024 17:22:03 +0800 Subject: [PATCH] chore: release v3.0.2 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- npm/package.json | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae576a96..e2fa981a 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] +## [3.0.2](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v3.0.1...oxc_resolver-v3.0.2) - 2024-12-13 + +### Bug Fixes + +- special case for aliasing `@/` (#348) +- normalize resolved result on Windows for root (#345) + +### Refactor + +- replace UnsafeCell with RefCell (#346) + ## [3.0.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v3.0.0...oxc_resolver-v3.0.1) - 2024-12-12 ### Performance diff --git a/Cargo.lock b/Cargo.lock index 20eac340..b99502a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -677,7 +677,7 @@ dependencies = [ [[package]] name = "oxc_resolver" -version = "3.0.1" +version = "3.0.2" dependencies = [ "cfg-if", "criterion2", diff --git a/Cargo.toml b/Cargo.toml index 2e6e5f30..4c17513c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "oxc_resolver" -version = "3.0.1" +version = "3.0.2" authors = ["Boshen "] categories = ["development-tools"] edition = "2021" diff --git a/npm/package.json b/npm/package.json index a2d6253d..4e51663b 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "3.0.1", + "version": "null", "description": "Oxc Resolver Node API", "main": "index.js", "browser": "browser.js",