From 949ab2e44a9cd2b0a475c7d06c7ae4a23877b2d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Wed, 27 Sep 2023 11:39:41 +0200 Subject: [PATCH] prepare v1.0.0 --- CHANGELOG.md | 2 +- Cargo.lock | 4 ++-- Cargo.toml | 7 +++++-- README.md | 3 ++- src/main.rs | 2 ++ 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c35574..b813fef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Bumped `mml-lib@v0.5.0`. +- Bumped `mml-lib@v1.0.0`. ## [0.3.0] - 2023-09-20 diff --git a/Cargo.lock b/Cargo.lock index b591eee..c840682 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1476,9 +1476,9 @@ dependencies = [ [[package]] name = "mml-lib" -version = "0.5.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d3d0041c291179f654d5e256a8473415dfea8fc055e8c51358a3c99dac2cf9e" +checksum = "32ba3fb7a13977dca05987845b1e846cb194ead79613528f41ebe8e99b730fd0" dependencies = [ "async-recursion", "chumsky", diff --git a/Cargo.toml b/Cargo.toml index 7435d27..b23c85f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,10 @@ keywords = ["email", "mime", "message", "mml", "emacs"] homepage = "https://pimalaya.org/mml/" documentation = "https://pimalaya.org/mml/" repository = "https://github.com/soywod/mml/" -metadata.docs.rs.all-features = true + +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] [[bin]] name = "mml" @@ -64,7 +67,7 @@ version = "0.10" version = "0.4" [dependencies.mml-lib] -version = "=0.5.0" +version = "1.0.0" default-features = false [dependencies.shellexpand-utils] diff --git a/README.md b/README.md index 07dd46e..be53d50 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ CLI to compile [MML] messages to [MIME] messages and interpret [MIME] messages a ## Features -TODO +- MML to MIME messages compilation (`mml compile --help`) +- MIME to MML messages interpretation (`mml interpret --help`) ## Installation diff --git a/src/main.rs b/src/main.rs index e180597..7dd8031 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +#![cfg_attr(docsrs, feature(doc_auto_cfg))] + mod compl; mod man; mod mml;