From bc08bf1d13f9db53cd193323ae573912e0c8e37f Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Wed, 8 Sep 2021 16:20:02 +0300 Subject: [PATCH] Bump version to 0.7.1 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 6 ++++-- Cargo.toml | 4 ++-- debian/changelog | 15 +++++++++++++++ melib/Cargo.toml | 2 +- 5 files changed, 40 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 578fa84e..8841ca20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [alpha-0.7.1] - 2021-09-08 + +### Added + +- Change all Down/Up shortcuts to j/k +- add 'GB18030' charset +- melib/nntp: implement refresh +- melib/nntp: update total/new counters on new articles +- melib/nntp: implement NNTP posting +- configs: throw error on extra unusued conf flags in some imap/nntp +- configs: throw error on missing `composing` section with explanation + +### Fixed + +- Fix compilation for netbsd-9.2 +- conf: fixed some boolean flag values requiring to be string e.g. "true" + ## [alpha-0.7.0] - 2021-09-03 ### Added @@ -132,3 +149,4 @@ Notable changes: [alpha-0.6.1]: https://github.com/meli/meli/releases/tag/alpha-0.6.1 [alpha-0.6.2]: https://github.com/meli/meli/releases/tag/alpha-0.6.2 [alpha-0.7.0]: https://github.com/meli/meli/releases/tag/alpha-0.7.0 +[alpha-0.7.1]: https://github.com/meli/meli/releases/tag/alpha-0.7.1 diff --git a/Cargo.lock b/Cargo.lock index 0c33e1db..d6455487 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "adler" version = "0.2.3" @@ -1096,7 +1098,7 @@ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" [[package]] name = "meli" -version = "0.7.0" +version = "0.7.1" dependencies = [ "async-task 3.0.0", "bincode", @@ -1133,7 +1135,7 @@ dependencies = [ [[package]] name = "melib" -version = "0.7.0" +version = "0.7.1" dependencies = [ "async-stream", "base64 0.12.3", diff --git a/Cargo.toml b/Cargo.toml index 230d0eb5..0f9c72cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "meli" -version = "0.7.0" +version = "0.7.1" authors = ["Manos Pitsidianakis "] edition = "2018" @@ -31,7 +31,7 @@ crossbeam = "0.7.2" signal-hook = "0.1.12" signal-hook-registry = "1.2.0" nix = "0.17.0" -melib = { path = "melib", version = "0.7.0" } +melib = { path = "melib", version = "0.7.1" } serde = "1.0.71" serde_derive = "1.0.71" diff --git a/debian/changelog b/debian/changelog index bd64afac..556b39e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +meli (0.7.1-1) bullseye; urgency=low + + Added + - Change all Down/Up shortcuts to j/k + - add 'GB18030' charset + - melib/nntp: implement refresh + - melib/nntp: update total/new counters on new articles + - melib/nntp: implement NNTP posting + - configs: throw error on extra unusued conf flags in some imap/nntp + - configs: throw error on missing `composing` section with explanation + + Fixed + - Fix compilation for netbsd-9.2 + - conf: fixed some boolean flag values requiring to be string e.g. "true" + -- Manos Pitsidianakis Wed, 08 Sep 2021 18:14:00 +0200 meli (0.7.0-1) buster; urgency=low -- Manos Pitsidianakis Fri, 03 Sep 2021 18:14:00 +0200 diff --git a/melib/Cargo.toml b/melib/Cargo.toml index 0e438f1d..d4d44f19 100644 --- a/melib/Cargo.toml +++ b/melib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "melib" -version = "0.7.0" +version = "0.7.1" authors = ["Manos Pitsidianakis "] workspace = ".." edition = "2018"