summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Batischev <eual.jp@gmail.com>2019-03-23 19:10:59 +0300
committerAlexander Batischev <eual.jp@gmail.com>2019-03-23 19:51:04 +0300
commit647ccb293a04ea3d56dd614509024580a6913f91 (patch)
tree906e93dbb4aae8c7b0544856867b3cf1e07c3e56
parent48ec7e543fe9445a6c3a254a3785b4a11c765bb7 (diff)
Release 2.15r2.15
-rw-r--r--CHANGELOG.md24
-rw-r--r--Cargo.lock6
-rw-r--r--README.md4
-rw-r--r--config.h4
-rw-r--r--rust/libnewsboat-ffi/Cargo.toml2
-rw-r--r--rust/libnewsboat/Cargo.toml2
6 files changed, 28 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83d344d2..34ed77cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,14 +2,27 @@
-## Unreleased
+## 2.15 - 2019-03-23
### Added
+- `random` `article-sort-order` (Jagannathan Tiruvallur Eachambadi)
+- Cursor position in article list is reset after marking the feed as read
+ (Stefan Assmann)
+
### Changed
-### Deprecated
-### Removed
+- Update vendored version of Catch2 to 2.7.0
+- Give our Snap access to `xdg-open`
+- Make "delete all items" work in query feeds (Alexander Batischev) (#456)
+
### Fixed
-### Security
+- Use a native compiler for internal tools when cross-compiling (maxice8)
+- Always write to `error-log`, no matter the log level specified on the command
+ line (Alexander Batischev)
+- (Regression) Let users interact with programs run by "exec:", backticks in
+ config, and `*-passwordeval` settings (Alexander Batischev) (#455)
+- Do not add deleted items to query feeds (Alexander Batischev) (#456)
+- Setup directories before importing feeds, to avoid the import silently failing
+ (Neill Miller)
@@ -27,7 +40,8 @@ acknowledge contributions from the following people: kkdd, Raphael Nestler.
### Changed
- Translations: Polish (Carno)
-- When opening a never-fetched feed in the browser, just use the feed's URL (Alexander Batischev)
+- When opening a never-fetched feed in the browser, just use the feed's URL
+ (Alexander Batischev)
- Update vendored version of Catch2 to 2.6.0
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index 25e9a543..fb44ba00 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -154,7 +154,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "libnewsboat"
-version = "2.14.1"
+version = "2.15.0"
dependencies = [
"backtrace 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -169,10 +169,10 @@ dependencies = [
[[package]]
name = "libnewsboat-ffi"
-version = "2.14.1"
+version = "2.15.0"
dependencies = [
"libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
- "libnewsboat 2.14.1",
+ "libnewsboat 2.15.0",
]
[[package]]
diff --git a/README.md b/README.md
index 31b0274b..2c60b438 100644
--- a/README.md
+++ b/README.md
@@ -55,8 +55,8 @@ Support
-------
* Check out our
- [documentation](https://newsboat.org/releases/2.14.1/docs/newsboat.html) and
- [FAQ](https://newsboat.org/releases/2.14.1/docs/faq.html)
+ [documentation](https://newsboat.org/releases/2.15/docs/newsboat.html) and
+ [FAQ](https://newsboat.org/releases/2.15/docs/faq.html)
* Bugs and whatnot should be reported to the
[issue tracker](https://github.com/newsboat/newsboat/issues)
* Drop us a line at
diff --git a/config.h b/config.h
index 0bf9e306..6ea13c1f 100644
--- a/config.h
+++ b/config.h
@@ -8,8 +8,8 @@
#define STRINGIFY(str) STRINGIFY_HELPER(str)
#define NEWSBOAT_VERSION_MAJOR 2
-#define NEWSBOAT_VERSION_MINOR 14
-#define NEWSBOAT_VERSION_PATCH 1
+#define NEWSBOAT_VERSION_MINOR 15
+#define NEWSBOAT_VERSION_PATCH 0
#define REAL_VERSION \
STRINGIFY(NEWSBOAT_VERSION_MAJOR) \
"." \
diff --git a/rust/libnewsboat-ffi/Cargo.toml b/rust/libnewsboat-ffi/Cargo.toml
index 0842f70c..810e1b92 100644
--- a/rust/libnewsboat-ffi/Cargo.toml
+++ b/rust/libnewsboat-ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat-ffi"
-version = "2.14.1"
+version = "2.15.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
[dependencies]
diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml
index baffe448..28b4b95c 100644
--- a/rust/libnewsboat/Cargo.toml
+++ b/rust/libnewsboat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat"
-version = "2.14.1"
+version = "2.15.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
[dependencies]