From 305cb7a3fc791f6f64e24d361d038c88c33de1ca Mon Sep 17 00:00:00 2001 From: "oxc-guard[bot]" <276638029+oxc-guard[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 00:50:01 +0000 Subject: [PATCH] chore: release v0.0.6 --- Cargo.lock | 2 +- crates/oxc_css_parser/CHANGELOG.md | 26 ++++++++++++++++++++++++++ crates/oxc_css_parser/Cargo.toml | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 crates/oxc_css_parser/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index df89b0e9..5e146e47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -430,7 +430,7 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] name = "oxc-css-parser" -version = "0.0.5" +version = "0.0.6" dependencies = [ "codespan-reporting", "criterion2", diff --git a/crates/oxc_css_parser/CHANGELOG.md b/crates/oxc_css_parser/CHANGELOG.md new file mode 100644 index 00000000..3b308199 --- /dev/null +++ b/crates/oxc_css_parser/CHANGELOG.md @@ -0,0 +1,26 @@ +# 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] + +## [0.0.6](https://github.com/oxc-project/oxc-css-parser/compare/oxc-css-parser-v0.0.5...oxc-css-parser-v0.0.6) - 2026-07-08 + +### Added + +- *(parser)* report spec parse errors via recoverable_errors ([#94](https://github.com/oxc-project/oxc-css-parser/pull/94)) + +### Other + +- mention raffia fork ([#106](https://github.com/oxc-project/oxc-css-parser/pull/106)) +- remove redundant clones on Copy types ([#100](https://github.com/oxc-project/oxc-css-parser/pull/100)) +- *(parser)* compact CSS token data ([#98](https://github.com/oxc-project/oxc-css-parser/pull/98)) +- import ast_generated as a module instead of include! ([#97](https://github.com/oxc-project/oxc-css-parser/pull/97)) +- place span first in ast structs ([#96](https://github.com/oxc-project/oxc-css-parser/pull/96)) +- tokenize over bytes instead of CharIndices ([#95](https://github.com/oxc-project/oxc-css-parser/pull/95)) +- remove changelog +- clean up codebase and fix svmin/svmax classification ([#89](https://github.com/oxc-project/oxc-css-parser/pull/89)) +- normalize README sponsor section diff --git a/crates/oxc_css_parser/Cargo.toml b/crates/oxc_css_parser/Cargo.toml index d4db6eae..b4039824 100644 --- a/crates/oxc_css_parser/Cargo.toml +++ b/crates/oxc_css_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc-css-parser" -version = "0.0.5" +version = "0.0.6" edition = "2024" authors = [] description = "Parser for CSS, SCSS, Sass, and Less."