summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Batischev <eual.jp@gmail.com>2019-09-22 17:19:19 +0300
committerAlexander Batischev <eual.jp@gmail.com>2019-09-22 17:19:19 +0300
commit9dc3d8a0e04f15ee16272407ed0f9c085ecab495 (patch)
treeddabf9d79aa8cbaf3a452f0e852db9ad7061530a
parent270e934207ff8e95a6609fcec0ec8ed2182e73c4 (diff)
Release 2.17r2.17
-rw-r--r--CHANGELOG.md31
-rw-r--r--Cargo.lock6
-rw-r--r--README.md4
-rw-r--r--rust/libnewsboat-ffi/Cargo.toml2
-rw-r--r--rust/libnewsboat/Cargo.toml2
5 files changed, 35 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f59b43d4..d1ec10c8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,39 @@
# Changes for Newsboat
-## 2.17 - expected 2019-09-22
+## 2.17 - 2019-09-22
+
+Lists below only mention user-visible changes, but I would also like to
+acknowledge contributions from the following people: Raphael Nestler, kpcyrd,
+and seanBE.
### Added
+- FreeBSD and Linux i686 jobs on continuous integration servers. We won't break
+ the build on these platforms ever again (Alexander Batischev)
+- Documentation for `macro-prefix` settings (Lysander Trischler)
+- `save-all` operation, to save all articles in the feed (Romeu Vieira)
+- `dirbrowser-title-format` setting, used in the DirBrowser dialog invoked by
+ `save-all` operation (Romeu Vieira)
+- `dirbrowser` context in `bind-key` command, to add bindings to DirBrowser
+ dialog invoked by `save-all` (Alexander Batischev)
+- `selecttag-format` setting, to control how the lines in "Select tag" dialog
+ look (Penguin-Guru, Alexander Batischev) (#588)
### Changed
-### Deprecated
+- Bumped minimum required Rust version to 1.26.0
+- Update vendored version of nlohmann/json to 3.7.0
+- Update vendored version of Catch2 to 2.9.2
+- Update Italian translations (Leandro Noferini)
### Removed
+- Some unnecessary work done at startup time, shaving off 6% in my tests
+ (Alexander Batischev)
### Fixed
-### Security
+- `newsboat --version` not displaying the version (Alexander Batischev) (#579)
+- Processing backticks inside comments (Jan Staněk)
+- Use-after-free crash when opening an article (Juho Pohjala) (#189)
+- Crash on `toggle-item-read` in an empty feed (Nikos Tsipinakis)
+- Un-applying a filter when command is ran (Nikos Tsipinakis) (#607)
+- Numerous memory leaks detected by Clang's AddressSanitizer (Alexander
+ Batischev) (#620, #621, #623, #624)
diff --git a/Cargo.lock b/Cargo.lock
index b8a06c92..f89b3b54 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -229,7 +229,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "libnewsboat"
-version = "2.16.1"
+version = "2.17.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)",
@@ -257,10 +257,10 @@ dependencies = [
[[package]]
name = "libnewsboat-ffi"
-version = "2.16.1"
+version = "2.17.0"
dependencies = [
"libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
- "libnewsboat 2.16.1",
+ "libnewsboat 2.17.0",
]
[[package]]
diff --git a/README.md b/README.md
index 7d378f69..ffdeec23 100644
--- a/README.md
+++ b/README.md
@@ -62,8 +62,8 @@ Support
-------
* Check out our
- [documentation](https://newsboat.org/releases/2.16.1/docs/newsboat.html) and
- [FAQ](https://newsboat.org/releases/2.16.1/docs/faq.html)
+ [documentation](https://newsboat.org/releases/2.17/docs/newsboat.html) and
+ [FAQ](https://newsboat.org/releases/2.17/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/rust/libnewsboat-ffi/Cargo.toml b/rust/libnewsboat-ffi/Cargo.toml
index 4c047e82..43b9f91a 100644
--- a/rust/libnewsboat-ffi/Cargo.toml
+++ b/rust/libnewsboat-ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat-ffi"
-version = "2.16.1"
+version = "2.17.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
[dependencies]
diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml
index 43e53f99..bb2c1e58 100644
--- a/rust/libnewsboat/Cargo.toml
+++ b/rust/libnewsboat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat"
-version = "2.16.1"
+version = "2.17.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
[dependencies]