diff options
author | Alexander Batischev <eual.jp@gmail.com> | 2024-09-22 13:27:35 +0300 |
---|---|---|
committer | Alexander Batischev <eual.jp@gmail.com> | 2024-09-22 16:50:30 +0300 |
commit | 5a2cce8fce0e366d3e00987f896c83827f662e00 (patch) | |
tree | fafedc9158982820c474460b89e099b99f0fb6d4 | |
parent | c50ca9b7903233ab76a0316d439d853e11d57573 (diff) |
Release 2.23.1r2.23.1
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | LICENSE | 4 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | doc/newsboat.asciidoc | 4 | ||||
-rw-r--r-- | newsboat.cpp | 4 | ||||
-rw-r--r-- | rust/libnewsboat-ffi/Cargo.toml | 2 | ||||
-rw-r--r-- | rust/libnewsboat/Cargo.toml | 2 |
8 files changed, 22 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fe37755f..163d4c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changes for Newsboat +## 2.23.1 - 2024-09-22 + +### Fixed + +- Newsboat spamming sites with requests when `download-retries` is changed from + its default of 1 and the site returns HTTP code 304 Not Modified (#2732) + (Dennis van der Schagt) + + + ## 2.23 - 2021-03-21 Lists below only mention user-visible changes, but the full list of contributors @@ -313,7 +313,7 @@ checksum = "ba4aede83fc3617411dc6993bc8c70919750c1c257c6ca6a502aed6e0e2394ae" [[package]] name = "libnewsboat" -version = "2.23.0" +version = "2.23.1" dependencies = [ "backtrace", "chrono", @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "libnewsboat-ffi" -version = "2.23.0" +version = "2.23.1" dependencies = [ "cxx", "cxx-build", @@ -1,9 +1,9 @@ MIT License Copyright 2006-2015 Andreas Krennmair <ak@newsbeuter.org> -Copyright 2015-2021 Alexander Batischev <eual.jp@gmail.com> +Copyright 2015-2024 Alexander Batischev <eual.jp@gmail.com> Copyright 2006-2017 Newsbeuter contributors -Copyright 2017-2021 Newsboat contributors +Copyright 2017-2024 Newsboat contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -116,8 +116,8 @@ Support ------- * Check out our - [documentation](https://newsboat.org/releases/2.23/docs/newsboat.html) and - [FAQ](https://newsboat.org/releases/2.23/docs/faq.html) + [documentation](https://newsboat.org/releases/2.23.1/docs/newsboat.html) and + [FAQ](https://newsboat.org/releases/2.23.1/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 diff --git a/doc/newsboat.asciidoc b/doc/newsboat.asciidoc index e748bc13..074ac494 100644 --- a/doc/newsboat.asciidoc +++ b/doc/newsboat.asciidoc @@ -1620,9 +1620,9 @@ Operation:Default key:Description MIT License Copyright 2006-2015 Andreas Krennmair <ak@newsbeuter.org> + -Copyright 2015-2021 Alexander Batischev <eual.jp@gmail.com> + +Copyright 2015-2024 Alexander Batischev <eual.jp@gmail.com> + Copyright 2006-2017 Newsbeuter contributors + -Copyright 2017-2021 Newsboat contributors +Copyright 2017-2024 Newsboat contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/newsboat.cpp b/newsboat.cpp index e388faa1..8cba6a4a 100644 --- a/newsboat.cpp +++ b/newsboat.cpp @@ -160,11 +160,11 @@ void print_version(const std::string& argv0, unsigned int level) << PROGRAM_URL << std::endl; ss << "Copyright (C) 2006-2015 Andreas Krennmair" << std::endl; - ss << "Copyright (C) 2015-2021 Alexander Batischev" + ss << "Copyright (C) 2015-2024 Alexander Batischev" << std::endl; ss << "Copyright (C) 2006-2017 Newsbeuter contributors" << std::endl; - ss << "Copyright (C) 2017-2021 Newsboat contributors" + ss << "Copyright (C) 2017-2024 Newsboat contributors" << std::endl; ss << std::endl; diff --git a/rust/libnewsboat-ffi/Cargo.toml b/rust/libnewsboat-ffi/Cargo.toml index e6dc0bd8..bd040314 100644 --- a/rust/libnewsboat-ffi/Cargo.toml +++ b/rust/libnewsboat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat-ffi" -version = "2.23.0" +version = "2.23.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2018" diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml index 6a4c9538..a639fca3 100644 --- a/rust/libnewsboat/Cargo.toml +++ b/rust/libnewsboat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat" -version = "2.23.0" +version = "2.23.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2018" |