Skip to content

Commit

Permalink
release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Aug 30, 2023
1 parent 4f3cd1e commit a939479
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1] - 2023-08-30

### Changed

- Improved shell expansion.
- Use `clap` derive feature for parsing arguments. [patch#44147]

## [0.2.0] - 2023-08-27

### Changed
Expand Down Expand Up @@ -38,8 +45,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[mml-lib]: https://crates.io/crates/mml-lib

[patch#44036]: https://lists.sr.ht/~soywod/pimalaya/patches/44036
[patch#44147]: https://lists.sr.ht/~soywod/pimalaya/patches/44147

[Unreleased]: https://github.com/soywod/mml/compare/v0.2.0...master
[Unreleased]: https://github.com/soywod/mml/compare/v0.2.1...master
[0.2.1]: https://github.com/soywod/mml/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/soywod/mml/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/soywod/mml/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/soywod/mml/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mml-cli"
description = "CLI to deal with Emacs MIME message Meta Language (MML)."
version = "0.2.0"
version = "0.2.1"
authors = ["soywod <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -29,30 +29,35 @@ pgp-native = ["mml-lib/pgp-native"]
version = "3.3"

# error

[dependencies.anyhow]
version = "1.0"

# log

[dependencies.log]
version = "0.4"

[dependencies.env_logger]
version = "0.10"

# async

[dependencies.tokio]
version = "1.32"
default-features = false
features = ["fs", "io-util", "io-std", "macros", "rt-multi-thread"]
features = ["macros", "rt-multi-thread"]

# io

[dependencies.atty]
version = "0.2"

[dependencies.shellexpand-utils]
version = "0.1.0"

# cli

[dependencies.clap]
version = "4.3"
features = ["derive"]
Expand All @@ -64,6 +69,7 @@ version = "4.3"
version = "0.2"

# mml

[dependencies.mml-lib]
version = "=0.2.3"
default-features = false

0 comments on commit a939479

Please sign in to comment.