summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-07-29 19:11:39 +0300
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-07-29 20:17:59 +0300
commit93d9c195cc736d8b0ee14498c44dd354a90b4be8 (patch)
treedf5c8ea78272f8645bb4b40d9e4a95d0c49a6955
parent3ac2c12e7a11b4c350d31bdfca74d58413fa1578 (diff)
downloadmeli-93d9c195cc736d8b0ee14498c44dd354a90b4be8.zip
Change version to 0.6.0
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml4
-rw-r--r--debian/changelog5
-rw-r--r--debian/patches/fix-prefix-for-debian.patch6
-rw-r--r--melib/Cargo.toml2
6 files changed, 16 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4ba5ed6a..ff6af5f8 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 f6c8f82c..497225d0 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 7e9ca0f8..90c37e5a 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 <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"
diff --git a/debian/changelog b/debian/changelog
index 3f078733..646271a2 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 <epilys@nessuent.xyz> 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 19d0aae4..5d5f042e 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 90bfeb97..b34c931a 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 <epilys@nessuent.xyz>"]
workspace = ".."
edition = "2018"