From aab556682d94feb4bb18b7c518e44232d385de46 Mon Sep 17 00:00:00 2001 From: oxc-bot <176400334+oxc-bot@users.noreply.github.com> Date: Thu, 11 Sep 2025 18:46:32 +0800 Subject: [PATCH] chore: release v3.0.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e85e8ea..44e865c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [3.1.0](https://github.com/oxc-project/oxc-index-vec/compare/v3.0.0...v3.1.0) - 2025-09-11 + +### Added + +- implement `rayon::slice::ParallelSlice` / `rayon::slice::ParallelSliceMut` trait ([#72](https://github.com/oxc-project/oxc-index-vec/pull/72)) + +### Other + +- *(deps)* lock file maintenance rust crates ([#61](https://github.com/oxc-project/oxc-index-vec/pull/61)) +- *(deps)* lock file maintenance ([#57](https://github.com/oxc-project/oxc-index-vec/pull/57)) +- *(deps)* update dependency rust to v1.89.0 ([#52](https://github.com/oxc-project/oxc-index-vec/pull/52)) +# Changelog + All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. diff --git a/Cargo.lock b/Cargo.lock index a087290..c8a0ade 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,7 +35,7 @@ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] name = "oxc_index" -version = "3.0.0" +version = "3.1.0" dependencies = [ "rayon", "serde", diff --git a/Cargo.toml b/Cargo.toml index 33676e8..cd1a460 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_index" -version = "3.0.0" +version = "3.1.0" publish = true authors = ["Boshen "] edition = "2024"