diff options
| author | Nathan Jaremko | 2017-12-05 15:31:03 -0500 | 
|---|---|---|
| committer | Nathan Jaremko | 2017-12-05 15:31:03 -0500 | 
| commit | c0b38deda139c64c9ad0dab6e10efcee2d3ef333 (patch) | |
| tree | f063738b5b4c81ad631e3d82bcfe8e691de65b22 | |
| parent | e5908c89870884c4d50ab31124f1c55523eff9a4 (diff) | |
| download | podcast-c0b38deda139c64c9ad0dab6e10efcee2d3ef333.tar.bz2 | |
Increment version
| -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() { | 
