diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 88f7c73e..18e45d5e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.4" + ".": "0.1.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3735ec62..b32aa0f9 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.1.5](https://github.com/mdn/rari/compare/v0.1.4...v0.1.5) (2024-12-17) + + +### Features + +* **cli:** support env_file ([2dd18b7](https://github.com/mdn/rari/commit/2dd18b71a1d596dee94acab27c24275fbc258216)) + ## [0.1.4](https://github.com/mdn/rari/compare/v0.1.3...v0.1.4) (2024-12-16) diff --git a/Cargo.lock b/Cargo.lock index d0391954..e7d3104f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -596,14 +596,14 @@ dependencies = [ [[package]] name = "css-definition-syntax" -version = "0.1.4" +version = "0.1.5" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "css-syntax" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "css-definition-syntax", @@ -620,7 +620,7 @@ dependencies = [ [[package]] name = "css-syntax-types" -version = "0.1.4" +version = "0.1.5" dependencies = [ "regress", "serde", @@ -829,7 +829,7 @@ dependencies = [ [[package]] name = "diff-test" -version = "0.1.4" +version = "0.1.5" dependencies = [ "ansi-to-html", "anyhow", @@ -2594,7 +2594,7 @@ dependencies = [ [[package]] name = "rari" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "axum", @@ -2620,7 +2620,7 @@ dependencies = [ [[package]] name = "rari-data" -version = "0.1.4" +version = "0.1.5" dependencies = [ "chrono", "indexmap", @@ -2635,7 +2635,7 @@ dependencies = [ [[package]] name = "rari-deps" -version = "0.1.4" +version = "0.1.5" dependencies = [ "chrono", "css-syntax-types", @@ -2652,7 +2652,7 @@ dependencies = [ [[package]] name = "rari-doc" -version = "0.1.4" +version = "0.1.5" dependencies = [ "chrono", "constcat", @@ -2703,14 +2703,14 @@ dependencies = [ [[package]] name = "rari-linter" -version = "0.1.4" +version = "0.1.5" dependencies = [ "thiserror 1.0.69", ] [[package]] name = "rari-md" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "base64", @@ -2723,7 +2723,7 @@ dependencies = [ [[package]] name = "rari-sitemap" -version = "0.1.4" +version = "0.1.5" dependencies = [ "chrono", "flate2", @@ -2737,7 +2737,7 @@ dependencies = [ [[package]] name = "rari-templ-func" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "quote", @@ -2747,7 +2747,7 @@ dependencies = [ [[package]] name = "rari-tools" -version = "0.1.4" +version = "0.1.5" dependencies = [ "chrono", "console", @@ -2776,7 +2776,7 @@ dependencies = [ [[package]] name = "rari-types" -version = "0.1.4" +version = "0.1.5" dependencies = [ "chrono", "config", @@ -2793,7 +2793,7 @@ dependencies = [ [[package]] name = "rari-utils" -version = "0.1.4" +version = "0.1.5" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 49b9451c..a403ad1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "MPL-2.0" authors = [ diff --git a/crates/css-definition-syntax/Cargo.toml b/crates/css-definition-syntax/Cargo.toml index 785a145d..474e3deb 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.4" +version = "0.1.5" 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 52f84bcd..bb0f32d6 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.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/css-syntax/Cargo.toml b/crates/css-syntax/Cargo.toml index 239eec30..75918d1a 100644 --- a/crates/css-syntax/Cargo.toml +++ b/crates/css-syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-syntax" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/diff-test/Cargo.toml b/crates/diff-test/Cargo.toml index d02441c9..92d696ea 100644 --- a/crates/diff-test/Cargo.toml +++ b/crates/diff-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diff-test" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-data/Cargo.toml b/crates/rari-data/Cargo.toml index 35b5f58e..844fb2ad 100644 --- a/crates/rari-data/Cargo.toml +++ b/crates/rari-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-data" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-deps/Cargo.toml b/crates/rari-deps/Cargo.toml index aca3bd02..548cfaee 100644 --- a/crates/rari-deps/Cargo.toml +++ b/crates/rari-deps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-deps" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-doc/Cargo.toml b/crates/rari-doc/Cargo.toml index c3dc4cdd..c51e6a38 100644 --- a/crates/rari-doc/Cargo.toml +++ b/crates/rari-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-doc" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-linter/Cargo.toml b/crates/rari-linter/Cargo.toml index 98538aec..62c5d32c 100644 --- a/crates/rari-linter/Cargo.toml +++ b/crates/rari-linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-linter" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-md/Cargo.toml b/crates/rari-md/Cargo.toml index 28cc7848..6c27fb5d 100644 --- a/crates/rari-md/Cargo.toml +++ b/crates/rari-md/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-md" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-sitemap/Cargo.toml b/crates/rari-sitemap/Cargo.toml index 6e0d0a2a..d1303ba9 100644 --- a/crates/rari-sitemap/Cargo.toml +++ b/crates/rari-sitemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-sitemap" -version = "0.1.4" +version = "0.1.5" 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 b081d229..48176d53 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.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-tools/Cargo.toml b/crates/rari-tools/Cargo.toml index 2cdb2c66..c91271a4 100644 --- a/crates/rari-tools/Cargo.toml +++ b/crates/rari-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-tools" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors = [ "Andi Pieper ", diff --git a/crates/rari-types/Cargo.toml b/crates/rari-types/Cargo.toml index e7698658..fd1a5f99 100644 --- a/crates/rari-types/Cargo.toml +++ b/crates/rari-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-types" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/rari-utils/Cargo.toml b/crates/rari-utils/Cargo.toml index ec6299b5..bdad94cf 100644 --- a/crates/rari-utils/Cargo.toml +++ b/crates/rari-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rari-utils" -version = "0.1.4" +version = "0.1.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/rari-npm/package-lock.json b/rari-npm/package-lock.json index 48f3baee..88fd1560 100644 --- a/rari-npm/package-lock.json +++ b/rari-npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mdn/rari", - "version": "0.1.4", + "version": "0.1.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mdn/rari", - "version": "0.1.4", + "version": "0.1.5", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/rari-npm/package.json b/rari-npm/package.json index e48f1123..3f17f3af 100644 --- a/rari-npm/package.json +++ b/rari-npm/package.json @@ -1,6 +1,6 @@ { "name": "@mdn/rari", - "version": "0.1.4", + "version": "0.1.5", "description": "npm package for rari", "main": "./lib/index.js", "types": "./lib/index.d.ts",