diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2f62a698..4f8c6fb7 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 27944c35..c371b7e6 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 962dc039..b0f8f4c8 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 04e20381..d6ab95f0 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 3cf13558..f337c4b3 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 4a7ae14b..12cbe009 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 2e4d95e5..d98f98ae 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 bb0e5d81..5033233c 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 485de547..0853ecad 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 efe909c1..a960361d 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 68e944ef..80860b31 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 b3b8f1c8..178e27ab 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 b67905b7..1a9798a9 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 0676157c..a3dbd586 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 1fe00644..43ca5b7b 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 6976b267..4a7e23d6 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 74ba3006..a5858ce7 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 3511a3ab..db57dc12 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 dccabb4f..a9019203 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 f298bd6a..52dff73b 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",