diff options
| -rw-r--r-- | CHANGELOG | 4 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 | 
3 files changed, 6 insertions, 2 deletions
| @@ -1,3 +1,7 @@ +0.4.5 +- Improve subscribe default behaviour +    - Without an option, we'll just subscribe to them +    - with -d or --download we will download according to auto-download limit in $PODCAST/.config  0.4.4  - Add ability to play latest episode by omitting episode number  - Fix update check working correctly @@ -1,6 +1,6 @@  [package]  name = "podcast" -version = "0.4.4" +version = "0.4.5"  authors = ["njaremko <njaremko@gmail.com>"]  description = "A command line podcast player"  license = "GPL-3.0" diff --git a/src/main.rs b/src/main.rs index 590a0ac..539b0ed 100644 --- a/src/main.rs +++ b/src/main.rs @@ -20,7 +20,7 @@ use structs::*;  use clap::{App, Arg, SubCommand}; -const VERSION: &str = "0.4.4"; +const VERSION: &str = "0.4.5";  fn main() {      if let Err(err) = create_directories() { | 
