diff options
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.lock | 6 | ||||
-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, 23 insertions, 13 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1413fbcb..7fd73ebb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changes for Newsboat +## 2.19.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.19 - 2020-03-22 Lists below only mention user-visible changes, but I would also like to @@ -229,7 +229,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libnewsboat" -version = "2.19.0" +version = "2.19.1" 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.19.0" +version = "2.19.1" dependencies = [ "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", - "libnewsboat 2.19.0", + "libnewsboat 2.19.1", ] [[package]] @@ -1,9 +1,9 @@ MIT License Copyright 2006-2015 Andreas Krennmair <ak@newsbeuter.org> -Copyright 2015-2020 Alexander Batischev <eual.jp@gmail.com> +Copyright 2015-2024 Alexander Batischev <eual.jp@gmail.com> Copyright 2006-2017 Newsbeuter contributors -Copyright 2017-2020 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"), @@ -114,8 +114,8 @@ Support ------- * Check out our - [documentation](https://newsboat.org/releases/2.19/docs/newsboat.html) and - [FAQ](https://newsboat.org/releases/2.19/docs/faq.html) + [documentation](https://newsboat.org/releases/2.19.1/docs/newsboat.html) and + [FAQ](https://newsboat.org/releases/2.19.1/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/newsboat.asciidoc b/doc/newsboat.asciidoc index b94a78ca..eb24feaa 100644 --- a/doc/newsboat.asciidoc +++ b/doc/newsboat.asciidoc @@ -1398,9 +1398,9 @@ https://github.com/newsboat/newsboat/issues/[] MIT License Copyright 2006-2015 Andreas Krennmair <ak@newsbeuter.org> + -Copyright 2015-2020 Alexander Batischev <eual.jp@gmail.com> + +Copyright 2015-2024 Alexander Batischev <eual.jp@gmail.com> + Copyright 2006-2017 Newsbeuter contributors + -Copyright 2017-2020 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 80f9186a..9ad3fb09 100644 --- a/newsboat.cpp +++ b/newsboat.cpp @@ -143,11 +143,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-2020 Alexander Batischev" + ss << "Copyright (C) 2015-2024 Alexander Batischev" << std::endl; ss << "Copyright (C) 2006-2017 Newsbeuter contributors" << std::endl; - ss << "Copyright (C) 2017-2020 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 b42d3950..58924b0d 100644 --- a/rust/libnewsboat-ffi/Cargo.toml +++ b/rust/libnewsboat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat-ffi" -version = "2.19.0" +version = "2.19.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] [dependencies] diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml index 6b9d78dd..fe30fa64 100644 --- a/rust/libnewsboat/Cargo.toml +++ b/rust/libnewsboat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat" -version = "2.19.0" +version = "2.19.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] [dependencies] |