Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions crates/oxc_css_parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion crates/oxc_css_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
Loading