diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 082a0b8..170cd46 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.18" + ".": "0.1.19" } diff --git a/CHANGELOG.md b/CHANGELOG.md index be04bfe..7d5c224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ 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). +## [0.1.19](https://github.com/mdn/rari/compare/v0.1.18...v0.1.19) (2025-01-22) + + +### Features + +* **templ:** add csssyntaxraw ([#92](https://github.com/mdn/rari/issues/92)) ([25808bd](https://github.com/mdn/rari/commit/25808bdb2fa525b0d524d61f1354d05229bacc1d)) + + +### Bug Fixes + +* **build/parser:** parse empty string args for macros as `None`s ([#88](https://github.com/mdn/rari/issues/88)) ([4f5751f](https://github.com/mdn/rari/commit/4f5751fa506cf87366bc3dc777725df095913e8a)) +* **html:** trim the first empty line in `<pre>` tag ([#90](https://github.com/mdn/rari/issues/90)) ([95f142f](https://github.com/mdn/rari/commit/95f142fecaad38cb696dc9606b2b9fa615c1f084)) + ## [0.1.18](https://github.com/mdn/rari/compare/v0.1.17...v0.1.18) (2025-01-16) diff --git a/Cargo.lock b/Cargo.lock index c97c617..aa33ef7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,14 +570,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.1.18" +version = "0.1.19" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "css-syntax" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "css-definition-syntax", @@ -594,7 +594,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.1.18" +version = "0.1.19" dependencies = [ "regress", "serde", @@ -804,7 +804,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.1.18" +version = "0.1.19" dependencies = [ "ansi-to-html", "anyhow", @@ -2546,7 +2546,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "axum", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.1.18" +version = "0.1.19" dependencies = [ "chrono", "indexmap", @@ -2587,7 +2587,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.1.18" +version = "0.1.19" dependencies = [ "chrono", "css-syntax-types", @@ -2604,7 +2604,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.1.18" +version = "0.1.19" dependencies = [ "chrono", "constcat", @@ -2656,14 +2656,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.1.18" +version = "0.1.19" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "rari-md" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "base64", @@ -2676,7 +2676,7 @@ dependencies = [ [[package]] name = "rari-sitemap" -version = "0.1.18" +version = "0.1.19" dependencies = [ "chrono", "flate2", @@ -2690,7 +2690,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anyhow", "quote", @@ -2700,7 +2700,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.1.18" +version = "0.1.19" dependencies = [ "assert-json-diff", "chrono", @@ -2730,7 +2730,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.1.18" +version = "0.1.19" dependencies = [ "chrono", "config", @@ -2747,7 +2747,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.1.18" +version = "0.1.19" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index d5fde74..9f06c1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.1.18" +version = "0.1.19" edition = "2021" license = "MPL-2.0" authors = [ diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 6399be9..4c61d2f 100644 --- a/crates/css-definition-syntax/Cargo.toml +++ b/crates/css-definition-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-definition-syntax" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax-types/Cargo.toml b/crates/css-syntax-types/Cargo.toml index 25e4742..42896a4 100644 --- a/crates/css-syntax-types/Cargo.toml +++ b/crates/css-syntax-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax-types" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 2d4d6c4..d30e742 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index 26e920c..cf845f2 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index c1d85b4..8201886 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index 6606c13..286e476 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index a3c2a60..307febc 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index a7226e8..71010b4 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index 32aa644..aa7b775 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-sitemap/Cargo.toml b/crates/rari-sitemap/Cargo.toml index e03702a..baba70d 100644 --- a/crates/rari-sitemap/Cargo.toml +++ b/crates/rari-sitemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-sitemap" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-templ-func/Cargo.toml b/crates/rari-templ-func/Cargo.toml index 3cd7743..e4ebcfc 100644 --- a/crates/rari-templ-func/Cargo.toml +++ b/crates/rari-templ-func/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-templ-func" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index a5bd1ce..f0ce4ad 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors = [ "Andi Pieper ", diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index b582151..a310a2b 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index 9ebae44..5f27846 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.1.18" +version = "0.1.19" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/rari-npm/package-lock.json b/rari-npm/package-lock.json index fd19d57..f471410 100644 --- a/rari-npm/package-lock.json +++ b/rari-npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mdn/rari", - "version": "0.1.18", + "version": "0.1.19", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mdn/rari", - "version": "0.1.18", + "version": "0.1.19", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/rari-npm/package.json b/rari-npm/package.json index bc3d1c9..bd1d256 100644 --- a/rari-npm/package.json +++ b/rari-npm/package.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.1.18", + "version": "0.1.19", "description": "npm package for rari", "main": "./lib/index.js", "types": "./lib/index.d.ts",