diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4ffed354..93dc0dc0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.29" + ".": "0.1.30" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c38eec5..fcb8846d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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.30](https://github.com/mdn/rari/compare/v0.1.29...v0.1.30) (2025-03-14) + + +### Features + +* **content:** support fix-flaws command ([#158](https://github.com/mdn/rari/issues/158)) ([8e2ba1c](https://github.com/mdn/rari/commit/8e2ba1c868c6aded2b25088fe6c919ebd55c17b2)) + + +### Bug Fixes + +* **issues:** calculate correct positions ([#154](https://github.com/mdn/rari/issues/154)) ([b97a9c2](https://github.com/mdn/rari/commit/b97a9c214452d8f89ca4da7928ad6814add16a9e)) +* **templ:** don't report ill cased as broken in templs ([#159](https://github.com/mdn/rari/issues/159)) ([0927f47](https://github.com/mdn/rari/commit/0927f4772b9bdf3a3312d9b86bfaa53883535c16)) +* update paths for HTTP section move ([#155](https://github.com/mdn/rari/issues/155)) ([ca4e711](https://github.com/mdn/rari/commit/ca4e7118e5600e7984997268c5c271fa84b84fdc)) + ## [0.1.29](https://github.com/mdn/rari/compare/v0.1.28...v0.1.29) (2025-03-13) diff --git a/Cargo.lock b/Cargo.lock index b64a4ff1..6ddb04ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -559,14 +559,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.1.29" +version = "0.1.30" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "css-syntax" -version = "0.1.29" +version = "0.1.30" dependencies = [ "anyhow", "css-definition-syntax", @@ -583,7 +583,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.1.29" +version = "0.1.30" dependencies = [ "regress", "serde", @@ -793,7 +793,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.1.29" +version = "0.1.30" dependencies = [ "ansi-to-html", "anyhow", @@ -2583,7 +2583,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.1.29" +version = "0.1.30" dependencies = [ "anyhow", "axum", @@ -2610,7 +2610,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.1.29" +version = "0.1.30" dependencies = [ "chrono", "indexmap", @@ -2625,7 +2625,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.1.29" +version = "0.1.30" dependencies = [ "chrono", "css-syntax-types", @@ -2646,7 +2646,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.1.29" +version = "0.1.30" dependencies = [ "chrono", "constcat", @@ -2698,14 +2698,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.1.29" +version = "0.1.30" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "rari-md" -version = "0.1.29" +version = "0.1.30" dependencies = [ "anyhow", "base64", @@ -2718,7 +2718,7 @@ dependencies = [ [[package]] name = "rari-sitemap" -version = "0.1.29" +version = "0.1.30" dependencies = [ "chrono", "flate2", @@ -2732,7 +2732,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.1.29" +version = "0.1.30" dependencies = [ "anyhow", "quote", @@ -2742,7 +2742,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.1.29" +version = "0.1.30" dependencies = [ "assert-json-diff", "chrono", @@ -2772,7 +2772,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.1.29" +version = "0.1.30" dependencies = [ "chrono", "config", @@ -2791,7 +2791,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.1.29" +version = "0.1.30" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index ae5b5237..2371f521 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.1.29" +version = "0.1.30" edition = "2021" license = "MPL-2.0" authors = [ diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 830e8067..a285b276 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.29" +version = "0.1.30" 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 da323982..d9bb1529 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.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 4d15d39c..0381128b 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index b37140ba..38e2917c 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index b7641fbc..d9d78e54 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index 9a019223..71b1a89d 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index f2ae5f0d..6e0e6972 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index 6de43413..83c8ad33 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index ccff1b2a..cbf78e87 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-sitemap/Cargo.toml b/crates/rari-sitemap/Cargo.toml index 40e70bc5..86e73dee 100644 --- a/crates/rari-sitemap/Cargo.toml +++ b/crates/rari-sitemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-sitemap" -version = "0.1.29" +version = "0.1.30" 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 de67168e..ce052cd4 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.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index 29b33f6e..fab0598f 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors = [ "Andi Pieper ", diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index e1de8e79..b4145673 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index 1eacbb0e..03b30f04 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.1.29" +version = "0.1.30" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/rari-npm/package-lock.json b/rari-npm/package-lock.json index 17b137e2..b8082a4d 100644 --- a/rari-npm/package-lock.json +++ b/rari-npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mdn/rari", - "version": "0.1.29", + "version": "0.1.30", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mdn/rari", - "version": "0.1.29", + "version": "0.1.30", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/rari-npm/package.json b/rari-npm/package.json index 46f3fbf9..32be8b76 100644 --- a/rari-npm/package.json +++ b/rari-npm/package.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.1.29", + "version": "0.1.30", "description": "npm package for rari", "main": "./lib/index.js", "types": "./lib/index.d.ts",