diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5aa42be7..cc7fc76d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.15" + ".": "0.0.16" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 95ada443..b1548de4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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.16](https://github.com/mdn/rari/compare/v0.0.15...v0.0.16) (2024-10-31) + + +### Features + +* **html:** no href for page-not-found ([1a0695b](https://github.com/mdn/rari/commit/1a0695b9db2c7a048d757023a3b2889e7b3e6605)) +* **issues:** issue counter ([bf9984e](https://github.com/mdn/rari/commit/bf9984e374b9c34183e009b15e119c0418f9badb)) + + +### Bug Fixes + +* **html:** unify code tags in pre ([d66b941](https://github.com/mdn/rari/commit/d66b94114fa89b19c4b708643b061595e1f1ffec)) +* **release-please:** update self package ([14c6b97](https://github.com/mdn/rari/commit/14c6b97d9409e6018997fba8e8710d9b0bc3891b)) +* **templ:** fix summary and inheritancediagram ([c0890a4](https://github.com/mdn/rari/commit/c0890a4c1c6962a70099f57bc5dd2830e343d229)) + ## [0.0.15](https://github.com/mdn/rari/compare/v0.0.14...v0.0.15) (2024-10-25) diff --git a/Cargo.lock b/Cargo.lock index 6a40a2a6..efae86ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -550,14 +550,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.0.15" +version = "0.0.16" dependencies = [ "thiserror", ] [[package]] name = "css-syntax" -version = "0.0.15" +version = "0.0.16" dependencies = [ "anyhow", "css-definition-syntax", @@ -574,7 +574,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.0.15" +version = "0.0.16" dependencies = [ "regress", "serde", @@ -814,7 +814,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.0.15" +version = "0.0.16" dependencies = [ "ansi-to-html", "anyhow", @@ -2576,7 +2576,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.0.15" +version = "0.0.16" dependencies = [ "anyhow", "axum", @@ -2599,7 +2599,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.0.15" +version = "0.0.16" dependencies = [ "chrono", "indexmap", @@ -2612,7 +2612,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.0.15" +version = "0.0.16" dependencies = [ "chrono", "css-syntax-types", @@ -2627,7 +2627,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.0.15" +version = "0.0.16" dependencies = [ "chrono", "constcat", @@ -2679,14 +2679,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.0.15" +version = "0.0.16" dependencies = [ "thiserror", ] [[package]] name = "rari-md" -version = "0.0.15" +version = "0.0.16" dependencies = [ "anyhow", "base64", @@ -2699,7 +2699,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.0.15" +version = "0.0.16" dependencies = [ "anyhow", "quote", @@ -2709,7 +2709,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.0.15" +version = "0.0.16" dependencies = [ "chrono", "console", @@ -2734,7 +2734,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.0.15" +version = "0.0.16" dependencies = [ "chrono", "config", @@ -2750,7 +2750,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.0.15" +version = "0.0.16" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 1ee12186..e9a40644 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.0.15" +version = "0.0.16" edition = "2021" license = "MPL-2.0" authors = [ diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 4a7b8c05..741d5adc 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.15" +version = "0.0.16" 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 9e3e059f..b8c3d468 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.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 507f3f8b..b1128fb1 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index 9340bf29..82f0112b 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index fc49fca4..e9e3928e 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index 9f37e8b8..09fc33f3 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index debca0c9..9d026e2c 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index a7aff740..064113f6 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index c81e2199..6576ef3c 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.0.15" +version = "0.0.16" 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 2a9db136..8d51cac9 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.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index 55feb5a9..0a7be631 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors = [ "Andi Pieper ", diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index 279046e1..a290e679 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index 868901e9..da9fcadf 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.0.15" +version = "0.0.16" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/rari-npm/package-lock.json b/rari-npm/package-lock.json index f544e3f5..3802a959 100644 --- a/rari-npm/package-lock.json +++ b/rari-npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mdn/rari", - "version": "0.0.15", + "version": "0.0.16", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mdn/rari", - "version": "0.0.15", + "version": "0.0.16", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/rari-npm/package.json b/rari-npm/package.json index 304e5d3d..f046281c 100644 --- a/rari-npm/package.json +++ b/rari-npm/package.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.0.15", + "version": "0.0.16", "description": "npm package for rari", "main": "./lib/index.js", "types": "./lib/index.d.ts",