diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2f62a69..4f8c6fb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.22" + ".": "0.1.23" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 27944c3..c371b7e 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.23](https://github.com/mdn/rari/compare/v0.1.22...v0.1.23) (2025-02-05) + + +### Features + +* **macros:** add InteractiveExample macro ([#84](https://github.com/mdn/rari/issues/84)) ([ca2f1e3](https://github.com/mdn/rari/commit/ca2f1e327cf275749b13fd414b99a5badf4639fd)) + + +### Bug Fixes + +* **move:** error when target directory exists ([3ce09de](https://github.com/mdn/rari/commit/3ce09de9e57ec17ae168453d1d774013b6f124ac)) +* **validate-redirects:** validate to urls correct ([7de48c0](https://github.com/mdn/rari/commit/7de48c0f366529df530a683df0527f2893e2aa6c)) + ## [0.1.22](https://github.com/mdn/rari/compare/v0.1.21...v0.1.22) (2025-02-03) diff --git a/Cargo.lock b/Cargo.lock index 962dc03..b0f8f4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,14 +570,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.1.22" +version = "0.1.23" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "css-syntax" -version = "0.1.22" +version = "0.1.23" dependencies = [ "anyhow", "css-definition-syntax", @@ -594,7 +594,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.1.22" +version = "0.1.23" dependencies = [ "regress", "serde", @@ -804,7 +804,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.1.22" +version = "0.1.23" dependencies = [ "ansi-to-html", "anyhow", @@ -2546,7 +2546,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.1.22" +version = "0.1.23" dependencies = [ "anyhow", "axum", @@ -2573,7 +2573,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.1.22" +version = "0.1.23" dependencies = [ "chrono", "indexmap", @@ -2588,7 +2588,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.1.22" +version = "0.1.23" dependencies = [ "chrono", "css-syntax-types", @@ -2609,7 +2609,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.1.22" +version = "0.1.23" dependencies = [ "chrono", "constcat", @@ -2661,14 +2661,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.1.22" +version = "0.1.23" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "rari-md" -version = "0.1.22" +version = "0.1.23" dependencies = [ "anyhow", "base64", @@ -2681,7 +2681,7 @@ dependencies = [ [[package]] name = "rari-sitemap" -version = "0.1.22" +version = "0.1.23" dependencies = [ "chrono", "flate2", @@ -2695,7 +2695,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.1.22" +version = "0.1.23" dependencies = [ "anyhow", "quote", @@ -2705,7 +2705,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.1.22" +version = "0.1.23" dependencies = [ "assert-json-diff", "chrono", @@ -2735,7 +2735,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.1.22" +version = "0.1.23" dependencies = [ "chrono", "config", @@ -2754,7 +2754,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.1.22" +version = "0.1.23" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 04e2038..d6ab95f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.1.22" +version = "0.1.23" edition = "2021" license = "MPL-2.0" authors = [ diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 3cf1355..f337c4b 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.22" +version = "0.1.23" 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 4a7ae14..12cbe00 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.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 2e4d95e..d98f98a 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index bb0e5d8..5033233 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index 485de54..0853eca 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index efe909c..a960361 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index 68e944e..80860b3 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index b3b8f1c..178e27a 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index b67905b..1a9798a 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-sitemap/Cargo.toml b/crates/rari-sitemap/Cargo.toml index 0676157..a3dbd58 100644 --- a/crates/rari-sitemap/Cargo.toml +++ b/crates/rari-sitemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-sitemap" -version = "0.1.22" +version = "0.1.23" 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 1fe0064..43ca5b7 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.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index 6976b26..4a7e23d 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors = [ "Andi Pieper ", diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index 74ba300..a5858ce 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index 3511a3a..db57dc1 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.1.22" +version = "0.1.23" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/rari-npm/package-lock.json b/rari-npm/package-lock.json index dccabb4..a901920 100644 --- a/rari-npm/package-lock.json +++ b/rari-npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mdn/rari", - "version": "0.1.22", + "version": "0.1.23", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mdn/rari", - "version": "0.1.22", + "version": "0.1.23", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/rari-npm/package.json b/rari-npm/package.json index f298bd6..52dff73 100644 --- a/rari-npm/package.json +++ b/rari-npm/package.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.1.22", + "version": "0.1.23", "description": "npm package for rari", "main": "./lib/index.js", "types": "./lib/index.d.ts",