Skip to content

Commit

Permalink
Release 2.31
Browse files Browse the repository at this point in the history
  • Loading branch information
Minoru committed Mar 26, 2023
1 parent 60b8d15 commit cdcd298
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 22 deletions.
22 changes: 15 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
# Changes for Newsboat

## Unreleased - expected 2023-03-25
## 2.31 - 2023-03-26

Lists below only mention user-visible changes, but the full list of contributors
for this release also includes: TK
for this release also includes: Sergei Trofimovich and giuliano.

### Added

- Operations for scrolling by half a page (`halfpageup`, `halfpagedown`) (#36)
(Dennis van der Schagt)
- If `--log-level` is specified but `--log-file` isn't, write the log to a file
named after the template `newsboat_%Y-%m-%d_%H.%M.%S.log`, i.e. use the
current date and time (Dennis van der Schagt)
- _contrib/move_url.py_ for moving feeds in Newsboat's database while keeping
articles (blankie)

### Changed

- Updated translations: Dutch (Dennis van der Schagt), German (Lysander
Trischler), Italian (Mauro Scomparin), Polish (Carno), Russian and Ukrainian
(Alexander Batischev), Spanish (Roboron3042), Turkish (Emir SARI)
- Bumped minimum supported Rust version to 1.64.0

### Deprecated

### Removed

### Fixed

### Security
- Inability to exit search mode when `quit` is bound to `BACKSPACE` (#2336)
(Dennis van der Schagt, Alexander Batischev)



Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@ Notable features
* Powerful built-in HTML renderer — no need to start the web browser to view
text-only entries
* Send links and whole articles to third-party services using [bookmarking
scripts](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_bookmarking)
* [Filter articles out](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_killfiles)
scripts](https://newsboat.org/releases/2.31/docs/newsboat.html#_bookmarking)
* [Filter articles out](https://newsboat.org/releases/2.31/docs/newsboat.html#_killfiles)
based on title, author, contents etc.
* [Aggregate articles](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_query_feeds)
* [Aggregate articles](https://newsboat.org/releases/2.31/docs/newsboat.html#_query_feeds)
into meta-feeds by arbitrary criteria
* [Apply transformations](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_scripts_and_filters_snownews_extensions)
* [Apply transformations](https://newsboat.org/releases/2.31/docs/newsboat.html#_scripts_and_filters_snownews_extensions)
to feeds before passing them into Newsboat
* Integrates with services like The Old Reader, NewsBlur, FeedHQ
and [many more](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services)
* [Macros](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_macro_support)
and [many more](https://newsboat.org/releases/2.31/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services)
* [Macros](https://newsboat.org/releases/2.31/docs/newsboat.html#_macro_support)
to execute sequences of actions with just two keystrokes
* Rudimentary [podcast support](https://newsboat.org/releases/2.30.1/docs/newsboat.html#_podcast_support)
* Rudimentary [podcast support](https://newsboat.org/releases/2.31/docs/newsboat.html#_podcast_support)

Downloading
-----------
Expand Down Expand Up @@ -115,7 +115,7 @@ There are numerous ways:
strict confinement; if we disabled it, the snap would be no better than
a distribution's package;

[snap-browser]: https://newsboat.org/releases/2.30.1/docs/faq.html#_regarding_newsboat_snap_installations
[snap-browser]: https://newsboat.org/releases/2.31/docs/faq.html#_regarding_newsboat_snap_installations

- [build from source with Docker](doc/docker.md). Note that the resulting binary
might not run outside of that same Docker container if your system doesn't
Expand Down Expand Up @@ -154,8 +154,8 @@ Support
-------

* Check out our
[documentation](https://newsboat.org/releases/2.30.1/docs/newsboat.html) and
[FAQ](https://newsboat.org/releases/2.30.1/docs/faq.html)
[documentation](https://newsboat.org/releases/2.31/docs/newsboat.html) and
[FAQ](https://newsboat.org/releases/2.31/docs/faq.html)
* Report security vulnerabilities to security@newsboat.org. Please encrypt your emails to
[PGP key 4ED6CD61932B9EBE](https://newsboat.org/newsboat.pgp) if you can.
* Report bugs and ask questions on
Expand Down
2 changes: 1 addition & 1 deletion doc/internal/howto-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ branch off the latest release and backport the bugfixes onto it.
* Acknowledge contributions from people whose changes didn't make it into
the lists. The full list of contributors can be got with:
```
$ git shortlog PREVIOUS_VERSION.. | egrep -v '^(\s|$)' | sed -r 's# \([[:digit:]]+\):$##'
$ git shortlog PREVIOUS_VERSION.. | cut -f2
```
1. Update version:
* _rust/libnewsboat/Cargo.toml_
Expand Down
2 changes: 1 addition & 1 deletion rust/libnewsboat-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat-ffi"
version = "2.30.1"
version = "2.31.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion rust/libnewsboat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libnewsboat"
version = "2.30.1"
version = "2.31.0"
authors = ["Alexander Batischev <eual.jp@gmail.com>"]
edition = "2018"

Expand Down

0 comments on commit cdcd298

Please sign in to comment.