From f41803f30d7790073705629a045a3876483b58a5 Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 26 Aug 2024 21:03:57 +0800 Subject: [PATCH] Release v1.11.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- npm/package.json | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92219850..65242c61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.11.0](https://github.com/oxc-project/oxc_resolver/compare/oxc_resolver-v1.10.2...oxc_resolver-v1.11.0) - 2024-08-26 + +### Added +- use simdutf8 to validate UTF-8 when reading files ([#237](https://github.com/oxc-project/oxc_resolver/pull/237)) +- Yarn PnP (behind a feature flag) ([#217](https://github.com/oxc-project/oxc_resolver/pull/217)) + ## [1.10.2](https://github.com/oxc-project/oxc_resolver/compare/oxc_resolver-v1.10.1...oxc_resolver-v1.10.2) - 2024-07-16 ### Chore diff --git a/Cargo.lock b/Cargo.lock index 6f0feb30..58c1e7ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -672,7 +672,7 @@ dependencies = [ [[package]] name = "oxc_resolver" -version = "1.10.2" +version = "1.11.0" dependencies = [ "cfg-if", "criterion2", diff --git a/Cargo.toml b/Cargo.toml index 587ca70f..68a92d4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["napi"] resolver = "2" [package] -version = "1.10.2" +version = "1.11.0" name = "oxc_resolver" authors = ["Boshen "] categories = ["development-tools"] diff --git a/npm/package.json b/npm/package.json index 5a97b635..85422809 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "1.10.2", + "version": "1.11.0", "description": "Oxc Resolver Node API", "main": "index.js", "browser": "browser.js",