Change version to 0.6.0

master
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]
## [alpha-0.6.0] - 2020-07-29
### Added
- 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]: #
[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]]
name = "meli"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"async-task",
"bincode",
@ -954,7 +954,7 @@ dependencies = [
[[package]]
name = "melib"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"async-stream",
"base64 0.12.3",

View File

@ -1,6 +1,6 @@
[package]
name = "meli"
version = "0.5.1"
version = "0.6.0"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
edition = "2018"
@ -32,7 +32,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.5.0" }
melib = { path = "melib", version = "0.6.0" }
serde = "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
* Update to 0.5.1

View File

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

View File

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