summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Batischev <eual.jp@gmail.com>2019-06-25 19:12:09 +0300
committerAlexander Batischev <eual.jp@gmail.com>2019-06-25 19:14:27 +0300
commit4be1177c0cfcf0043459ae2dfc7bfb488f58c95b (patch)
tree31a74b825589b8ae3821d7b31beac1d1cee75795
parent3a1e0b0167685848037f18ca8ad1166e9ccfe8b2 (diff)
Update everything for 2.16 releaser2.16
-rw-r--r--CHANGELOG.md30
-rw-r--r--Cargo.lock6
-rw-r--r--README.md4
-rw-r--r--doc/internal/howto-release.md5
-rw-r--r--rust/libnewsboat-ffi/Cargo.toml2
-rw-r--r--rust/libnewsboat/Cargo.toml2
6 files changed, 37 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 513069e3..fdc820a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,15 +1,37 @@
# Changes for Newsboat
+## 2.16 - 2019-06-25
-## Unreleased
+Lists below only mention user-visible changes, but I would also like to
+acknowledge contributions from Ivan Tham.
### Added
+- Install changelog and contrib/ alongside docs (Alexander Batischev) (#474)
+- `show-title-bar` config option to hide the title bar. Defaults to yes, i.e.
+ the behaviour is the same as with Newsboat 2.15 (Sermak) (#375)
+- Contrib scripts for image preview (Sermak) (#480)
+- Nord colour scheme (Daryl Manning)
+- Ability to search withing the search results, narrowing them down (Tumlinh)
+ (#327)
+- Color scheme based on Adapta-Maia GTK theme (Lucas Parsy)
+
### Changed
-### Deprecated
-### Removed
+- Marking feed as read only resets the cursor if article list is sorted by date
+ (Stefan Assmann)
+- `include` also accepts relative paths (Marco Sirabella) (#489)
+- Update vendored version of nlohmann/json to 3.6.1
+- Update vendored version of Catch2 to 2.9.1
+
### Fixed
-### Security
+- Parser breaking on spaces inside backticks (Marco Sirabella) (#492)
+- Hidden tags changing the title of their feeds (Alexander Batischev) (#498)
+- Segfaults some time after using an invalid regex in a filter expression
+ (Alexander Batischev) (#501)
+- Single quotes in podcast names replaced by %27 (屑鉄さらい;Scrap Trawler)
+ (#290, #457)
+- Out-of-bounds access on empty "author" tag in RSS 0.9x (Alexander Batischev)
+ (#542)
diff --git a/Cargo.lock b/Cargo.lock
index 3a1b305f..910a0361 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.15.0"
+version = "2.16.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)",
@@ -254,10 +254,10 @@ dependencies = [
[[package]]
name = "libnewsboat-ffi"
-version = "2.15.0"
+version = "2.16.0"
dependencies = [
"libc 0.2.48 (registry+https://github.com/rust-lang/crates.io-index)",
- "libnewsboat 2.15.0",
+ "libnewsboat 2.16.0",
]
[[package]]
diff --git a/README.md b/README.md
index 2c60b438..0763003d 100644
--- a/README.md
+++ b/README.md
@@ -55,8 +55,8 @@ Support
-------
* Check out our
- [documentation](https://newsboat.org/releases/2.15/docs/newsboat.html) and
- [FAQ](https://newsboat.org/releases/2.15/docs/faq.html)
+ [documentation](https://newsboat.org/releases/2.16/docs/newsboat.html) and
+ [FAQ](https://newsboat.org/releases/2.16/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/doc/internal/howto-release.md b/doc/internal/howto-release.md
index 7643d550..4dec0817 100644
--- a/doc/internal/howto-release.md
+++ b/doc/internal/howto-release.md
@@ -12,7 +12,10 @@ master repository and shell access to newsboat.org.
for Newsbeuter issues)
* Mention the name of contributor
* Acknowledge contributions from people whose changes didn't make it into
- the lists
+ the lists. The full list of contributors can be got with:
+ ```
+ $ git shortlog PREVIOUS_VERSION.. | egrep -v '^(\s|$)'
+ ```
2. Update version:
* rust/libnewsboat/Cargo.toml
* rust/libnewsboat-ffi/Cargo.toml
diff --git a/rust/libnewsboat-ffi/Cargo.toml b/rust/libnewsboat-ffi/Cargo.toml
index 810e1b92..703efaf6 100644
--- a/rust/libnewsboat-ffi/Cargo.toml
+++ b/rust/libnewsboat-ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat-ffi"
-version = "2.15.0"
+version = "2.16.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
[dependencies]
diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml
index cce465d3..c88d98fb 100644
--- a/rust/libnewsboat/Cargo.toml
+++ b/rust/libnewsboat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat"
-version = "2.15.0"
+version = "2.16.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
[dependencies]