Change version to 0.6.0

memfd alpha-0.6.0
Manos Pitsidianakis 2020-07-29 19:11:39 +03:00
parent 3ac2c12e7a
commit 93d9c195cc
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
6 changed files with 16 additions and 8 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [alpha-0.6.0] - 2020-07-29
### Added ### Added
- Add `select` command to select threads that match search query - Add `select` command to select threads that match search query
@ -67,3 +69,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[unreleased]: # [unreleased]: #
[alpha-0.5.1]: https://github.com/meli/meli/releases/tag/alpha-0.5.1 [alpha-0.5.1]: https://github.com/meli/meli/releases/tag/alpha-0.5.1
[alpha-0.6.0]: https://github.com/meli/meli/releases/tag/alpha-0.6.0

4
Cargo.lock generated
View File

@ -915,7 +915,7 @@ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
[[package]] [[package]]
name = "meli" name = "meli"
version = "0.5.1" version = "0.6.0"
dependencies = [ dependencies = [
"async-task", "async-task",
"bincode", "bincode",
@ -954,7 +954,7 @@ dependencies = [
[[package]] [[package]]
name = "melib" name = "melib"
version = "0.5.0" version = "0.6.0"
dependencies = [ dependencies = [
"async-stream", "async-stream",
"base64 0.12.3", "base64 0.12.3",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "meli" name = "meli"
version = "0.5.1" version = "0.6.0"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"] authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2018" edition = "2018"
@ -32,7 +32,7 @@ crossbeam = "0.7.2"
signal-hook = "0.1.12" signal-hook = "0.1.12"
signal-hook-registry = "1.2.0" signal-hook-registry = "1.2.0"
nix = "0.17.0" nix = "0.17.0"
melib = { path = "melib", version = "0.5.0" } melib = { path = "melib", version = "0.6.0" }
serde = "1.0.71" serde = "1.0.71"
serde_derive = "1.0.71" serde_derive = "1.0.71"

5
debian/changelog vendored
View File

@ -1,3 +1,8 @@
meli (0.6.0-1) buster; urgency=low
* Update to 0.6.0
-- Manos Pitsidianakis <epilys@nessuent.xyz> Wed, 29 Jul 2020 22:24:08 +0200
meli (0.5.1-1) buster; urgency=low meli (0.5.1-1) buster; urgency=low
* Update to 0.5.1 * Update to 0.5.1

View File

@ -9,6 +9,6 @@ Last-Update: 2020-01-30
# Options # Options
-PREFIX ?= /usr/local -PREFIX ?= /usr/local
+PREFIX ?= /usr +PREFIX ?= /usr
BINDIR ?= ${PREFIX}/bin EXPANDED_PREFIX := `cd ${PREFIX} && pwd -P`
MANDIR ?= ${PREFIX}/share/man BINDIR ?= ${EXPANDED_PREFIX}/bin
MANDIR ?= ${EXPANDED_PREFIX}/share/man

View File

@ -1,6 +1,6 @@
[package] [package]
name = "melib" name = "melib"
version = "0.5.0" version = "0.6.0"
authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"] authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"]
workspace = ".." workspace = ".."
edition = "2018" edition = "2018"