Skip to content

Commit dba7445

Browse files
committed
prepare v0.1.1
1 parent 091bc81 commit dba7445

File tree

5 files changed

+35
-23
lines changed

5 files changed

+35
-23
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.1] - 2023-08-27
11+
12+
### Fixed
13+
14+
- Fixed missing angles when compiling MML containing one of those headers: Message-ID, References, In-Reply-To, Return-Path, Content-ID, Resent-Message-ID.
15+
- Fixed windows build.
16+
17+
### Removed
18+
19+
- Removed `pgp-cmds` feature from default ones.
20+
1021
## [0.1.0] - 2023-08-23
1122

1223
### Added
@@ -15,5 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1526

1627
[mml-lib]: https://crates.io/crates/mml-lib
1728

18-
[Unreleased]: https://github.com/soywod/mml/compare/v0.1.0...master
29+
[Unreleased]: https://github.com/soywod/mml/compare/v0.1.1...master
30+
[0.1.1]: https://github.com/soywod/mml/compare/v0.1.0...v0.1.1
1931
[0.1.0]: https://github.com/soywod/mml/releases/tag/v0.1.0

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mml-cli"
33
description = "CLI to deal with Emacs MIME message Meta Language (MML)."
4-
version = "0.1.0"
4+
version = "0.1.1"
55
authors = ["soywod <clement.douin@posteo.net>"]
66
edition = "2021"
77
license = "MIT"
@@ -17,7 +17,7 @@ name = "mml"
1717
path = "src/main.rs"
1818

1919
[features]
20-
default = ["compiler", "interpreter", "pgp-cmds"]
20+
default = ["compiler", "interpreter"]
2121
compiler = ["mml-lib/compiler"]
2222
interpreter = ["mml-lib/interpreter"]
2323
pgp = ["mml-lib/pgp"]
@@ -51,5 +51,5 @@ clap_complete = "4.3"
5151
clap_mangen = "0.2"
5252

5353
# mml
54-
mml-lib.version = "=0.1.0"
54+
mml-lib.version = "=0.1.2"
5555
mml-lib.default-features = false

flake.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-toolchain.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ fenix:
22

33
let
44
file = ./rust-toolchain.toml;
5-
sha256 = "R0F0Risbr74xg9mEYydyebx/z0Wu6HI0/KWwrV30vZo=";
5+
sha256 = "Q9UgzzvxLi4x9aWUJTn+/5EXekC98ODRU1TwhUs9RnY=";
66
in
77
{
88
fromFile = { system }: fenix.packages.${system}.fromToolchainFile {

0 commit comments

Comments
 (0)