From 93d9c195cc736d8b0ee14498c44dd354a90b4be8 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Wed, 29 Jul 2020 19:11:39 +0300 Subject: [PATCH] Change version to 0.6.0 --- CHANGELOG.md | 3 +++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- debian/changelog | 5 +++++ debian/patches/fix-prefix-for-debian.patch | 6 +++--- melib/Cargo.toml | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ba5ed6a8..ff6af5f80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index f6c8f82c6..497225d09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 7e9ca0f88..90c37e5a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "meli" -version = "0.5.1" +version = "0.6.0" authors = ["Manos Pitsidianakis "] 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" diff --git a/debian/changelog b/debian/changelog index 3f0787333..646271a21 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,8 @@ +meli (0.6.0-1) buster; urgency=low + + * Update to 0.6.0 + + -- Manos Pitsidianakis Wed, 29 Jul 2020 22:24:08 +0200 meli (0.5.1-1) buster; urgency=low * Update to 0.5.1 diff --git a/debian/patches/fix-prefix-for-debian.patch b/debian/patches/fix-prefix-for-debian.patch index 19d0aae47..5d5f042ef 100644 --- a/debian/patches/fix-prefix-for-debian.patch +++ b/debian/patches/fix-prefix-for-debian.patch @@ -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 diff --git a/melib/Cargo.toml b/melib/Cargo.toml index 90bfeb97c..b34c931ae 100644 --- a/melib/Cargo.toml +++ b/melib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "melib" -version = "0.5.0" +version = "0.6.0" authors = ["Manos Pitsidianakis "] workspace = ".." edition = "2018"