diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4a34d5ca..72d5a592 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.11" + ".": "0.0.12" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6596aab3..1105a79c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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.12](https://github.com/mdn/rari/compare/v0.0.11...v0.0.12) (2024-10-10) + + +### Features + +* **locale:** add German ([#4](https://github.com/mdn/rari/issues/4)) ([ba457cf](https://github.com/mdn/rari/commit/ba457cffb07fb320ae1bad35f13dcf1dd0d41380)) +* **serve:** use axum ([b8ae516](https://github.com/mdn/rari/commit/b8ae516ba85adca6a93792b6fc06132bda9d5709)) + + +### Bug Fixes + +* **diff:** fast diff and various fixes ([560f198](https://github.com/mdn/rari/commit/560f1981be2067b57f7b98e9d7d9190dbc8c72ef)) +* **diff:** pretty html diff and fixes ([c32b5d8](https://github.com/mdn/rari/commit/c32b5d87ed96048f656cd8e77c3b49144d15e200)) +* **html:** don't remove p's in li's ([#19](https://github.com/mdn/rari/issues/19)) ([6cf911a](https://github.com/mdn/rari/commit/6cf911a526303072117f1106b448c8d454c0d2ea)) +* **templ:** corrects ids from templates ([d4398c8](https://github.com/mdn/rari/commit/d4398c8f523ca577e55f3868bd218220803c357b)) +* **templ:** escapte titles ([a0cdc7a](https://github.com/mdn/rari/commit/a0cdc7a91923d6ca2f3fbd86490be6d7963d9dee)) +* **templ:** fix delimiter usage ([ac5d606](https://github.com/mdn/rari/commit/ac5d6067d36ca0f3e18c4fb733fc31cbfa4d3db6)) +* **templ:** unescape strings in parser ([0d6b6ec](https://github.com/mdn/rari/commit/0d6b6ece9373c2843425460fb34a3d84373ddc36)) + ## [0.0.11](https://github.com/mdn/rari/compare/v0.0.10...v0.0.11) (2024-10-02) diff --git a/Cargo.lock b/Cargo.lock index 12c76b1e..6e89f03f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -545,14 +545,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.0.11" +version = "0.0.12" dependencies = [ "thiserror", ] [[package]] name = "css-syntax" -version = "0.0.11" +version = "0.0.12" dependencies = [ "anyhow", "css-definition-syntax", @@ -569,7 +569,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.0.11" +version = "0.0.12" dependencies = [ "regress", "serde", @@ -795,7 +795,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.0.11" +version = "0.0.12" dependencies = [ "ansi-to-html", "anyhow", @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.0.11" +version = "0.0.12" dependencies = [ "anyhow", "axum", @@ -2574,7 +2574,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.0.11" +version = "0.0.12" dependencies = [ "chrono", "indexmap", @@ -2587,7 +2587,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.0.11" +version = "0.0.12" dependencies = [ "chrono", "css-syntax-types", @@ -2602,7 +2602,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.0.11" +version = "0.0.12" dependencies = [ "chrono", "constcat", @@ -2651,14 +2651,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.0.11" +version = "0.0.12" dependencies = [ "thiserror", ] [[package]] name = "rari-md" -version = "0.0.11" +version = "0.0.12" dependencies = [ "anyhow", "base64", @@ -2671,7 +2671,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.0.11" +version = "0.0.12" dependencies = [ "anyhow", "quote", @@ -2681,7 +2681,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.0.11" +version = "0.0.12" dependencies = [ "chrono", "console", @@ -2704,7 +2704,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.0.11" +version = "0.0.12" dependencies = [ "chrono", "config", @@ -2720,7 +2720,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.0.11" +version = "0.0.12" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 6c2a3d77..fcad0915 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.0.11" +version = "0.0.12" edition = "2021" license = "MPL-2.0" authors = ["Florian Dieminger "] diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 4e04d855..b46f821d 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.11" +version = "0.0.12" 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 d749aa9c..6c7473ae 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.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index e69592ae..bd281532 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index 07d3fad9..86c011ac 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index 08344447..844e5585 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index f8ea3b41..19eac223 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index 47814b8c..0767854b 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index 095bfc2c..4c5560a4 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index ea84a797..6954159b 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.0.11" +version = "0.0.12" 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 21178121..31b841b0 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.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index eff01521..a21f8165 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index 73824977..95c3fc97 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index 1ed48a93..59f58076 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.0.11" +version = "0.0.12" edition.workspace = true authors.workspace = true license.workspace = true