From 2be2600e999de4e77ef74d8979fb4d86ac117b26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 22:42:24 +0200 Subject: [PATCH] chore(main): release 0.0.3 (#6) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 ++++++ Cargo.lock | 30 ++++++++++++------------- Cargo.toml | 2 +- crates/css-definition-syntax/Cargo.toml | 2 +- crates/css-syntax-types/Cargo.toml | 2 +- crates/css-syntax/Cargo.toml | 2 +- crates/diff-test/Cargo.toml | 2 +- crates/rari-data/Cargo.toml | 2 +- crates/rari-deps/Cargo.toml | 2 +- crates/rari-doc/Cargo.toml | 2 +- crates/rari-l10n/Cargo.toml | 2 +- crates/rari-linter/Cargo.toml | 2 +- crates/rari-md/Cargo.toml | 2 +- crates/rari-templ-func/Cargo.toml | 2 +- crates/rari-tools/Cargo.toml | 2 +- crates/rari-types/Cargo.toml | 2 +- crates/rari-utils/Cargo.toml | 2 +- 18 files changed, 38 insertions(+), 31 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 40ff6fe..3a327a0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.2" + ".": "0.0.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a1f1012..8f523d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.3](https://github.com/mdn/rari/compare/v0.0.2...v0.0.3) (2024-09-18) + + +### Bug Fixes + +* **ci:** release build ([257e3bc](https://github.com/mdn/rari/commit/257e3bc99e08f0102b009d067fbcbce4974ba170)) + ## [0.0.2](https://github.com/mdn/rari/compare/v0.0.1...v0.0.2) (2024-09-18) diff --git a/Cargo.lock b/Cargo.lock index e21a21c..eed9243 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -501,14 +501,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.0.2" +version = "0.0.3" dependencies = [ "thiserror", ] [[package]] name = "css-syntax" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "css-definition-syntax", @@ -525,7 +525,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.0.2" +version = "0.0.3" dependencies = [ "regress", "serde", @@ -738,7 +738,7 @@ checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00" [[package]] name = "diff-test" -version = "0.0.2" +version = "0.0.3" dependencies = [ "ansi-to-html", "anyhow", @@ -2532,7 +2532,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "clap", @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.0.2" +version = "0.0.3" dependencies = [ "chrono", "indexmap", @@ -2565,7 +2565,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.0.2" +version = "0.0.3" dependencies = [ "chrono", "css-syntax-types", @@ -2580,7 +2580,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.0.2" +version = "0.0.3" dependencies = [ "chrono", "concat-in-place", @@ -2627,7 +2627,7 @@ dependencies = [ [[package]] name = "rari-l10n" -version = "0.0.2" +version = "0.0.3" dependencies = [ "rari-types", "serde_json", @@ -2636,14 +2636,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.0.2" +version = "0.0.3" dependencies = [ "thiserror", ] [[package]] name = "rari-md" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "base64", @@ -2656,7 +2656,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "quote", @@ -2666,7 +2666,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.0.2" +version = "0.0.3" dependencies = [ "chrono", "concat-in-place", @@ -2682,7 +2682,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.0.2" +version = "0.0.3" dependencies = [ "chrono", "config", @@ -2698,7 +2698,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.0.2" +version = "0.0.3" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 681f69f..c55f91d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.0.2" +version = "0.0.3" 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 1ff875d..7b167b5 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.2" +version = "0.0.3" 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 8529be2..3a8093d 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.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 4f0beb1..4ee340c 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index a0f57a0..c68107d 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index 2fe4b4b..fd2cf0c 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index b3f32b0..7067f0b 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index 757ed11..d0a329a 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-l10n/Cargo.toml b/crates/rari-l10n/Cargo.toml index cf9508a..c7ca903 100644 --- a/crates/rari-l10n/Cargo.toml +++ b/crates/rari-l10n/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-l10n" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index 1e0ad77..e9e9560 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index ccdd897..7e8d26b 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.0.2" +version = "0.0.3" 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 7269f2a..b6b1ca2 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.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index a7f2663..6f3c163 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index 940b00c..3aa22a4 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index dbf35e2..3b1038c 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true