diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f89a3b61..5aa42be7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.14" + ".": "0.0.15" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ad3ca1b..95ada443 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.0.15](https://github.com/mdn/rari/compare/v0.0.14...v0.0.15) (2024-10-25) + + +### Features + +* **issues:** initial flaw compat ([dc0c131](https://github.com/mdn/rari/commit/dc0c131c911ba026e97e8c160e9117f2fc033aa5)) +* **rari-doc:** write metadata.json ([6244c4b](https://github.com/mdn/rari/commit/6244c4b2bb74afe84282eb1d10bcc91fd0f231c8)) + + +### Bug Fixes + +* **rari-npm:** fix windows arm ([9bba930](https://github.com/mdn/rari/commit/9bba9307b9bf24e40471354ca048ce6365f1cb7e)) +* **rari-npm:** publish action ([62ad708](https://github.com/mdn/rari/commit/62ad708bf1ee6ba3e2ec4bc026d2b15c797eb986)) + ## [0.0.14](https://github.com/mdn/rari/compare/v0.0.13...v0.0.14) (2024-10-24) diff --git a/Cargo.lock b/Cargo.lock index 5303f664..b2a1f8f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -544,14 +544,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.0.14" +version = "0.0.15" dependencies = [ "thiserror", ] [[package]] name = "css-syntax" -version = "0.0.14" +version = "0.0.15" dependencies = [ "anyhow", "css-definition-syntax", @@ -568,7 +568,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.0.14" +version = "0.0.15" dependencies = [ "regress", "serde", @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.0.14" +version = "0.0.15" dependencies = [ "ansi-to-html", "anyhow", @@ -2553,7 +2553,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.0.14" +version = "0.0.15" dependencies = [ "anyhow", "axum", @@ -2575,7 +2575,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.0.14" +version = "0.0.15" dependencies = [ "chrono", "indexmap", @@ -2588,7 +2588,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.0.14" +version = "0.0.15" dependencies = [ "chrono", "css-syntax-types", @@ -2603,7 +2603,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.0.14" +version = "0.0.15" dependencies = [ "chrono", "constcat", @@ -2654,14 +2654,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.0.14" +version = "0.0.15" dependencies = [ "thiserror", ] [[package]] name = "rari-md" -version = "0.0.14" +version = "0.0.15" dependencies = [ "anyhow", "base64", @@ -2674,7 +2674,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.0.14" +version = "0.0.15" dependencies = [ "anyhow", "quote", @@ -2684,7 +2684,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.0.14" +version = "0.0.15" dependencies = [ "chrono", "console", @@ -2709,7 +2709,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.0.14" +version = "0.0.15" dependencies = [ "chrono", "config", @@ -2725,7 +2725,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.0.14" +version = "0.0.15" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 54768bda..9c33af57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.0.14" +version = "0.0.15" edition = "2021" license = "MPL-2.0" authors = [ diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 2112b1b6..4a7b8c05 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.0.14" +version = "0.0.15" 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 c811e1e3..9e3e059f 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.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 4ce1d15a..507f3f8b 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index 1d1ae967..ff086697 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index 08aded1b..fc49fca4 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index 593b554a..9f37e8b8 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index 28cc54d2..3650b8db 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index e8c39471..a7aff740 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index 48d99400..c81e2199 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.0.14" +version = "0.0.15" 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 db5614da..2a9db136 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.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index 00056ab3..5f07d853 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors = [ "Andi Pieper ", diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index 66033140..279046e1 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index 4b4ffe80..868901e9 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.0.14" +version = "0.0.15" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/rari-npm/package-lock.json b/rari-npm/package-lock.json index 6aaf367a..a0bdc634 100644 --- a/rari-npm/package-lock.json +++ b/rari-npm/package-lock.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.0.14", + "version": "0.0.15", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/rari-npm/package.json b/rari-npm/package.json index 2c7be515..304e5d3d 100644 --- a/rari-npm/package.json +++ b/rari-npm/package.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.0.14", + "version": "0.0.15", "description": "npm package for rari", "main": "./lib/index.js", "types": "./lib/index.d.ts",