aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Jaremko2017-12-05 15:31:03 -0500
committerNathan Jaremko2017-12-05 15:31:03 -0500
commitc0b38deda139c64c9ad0dab6e10efcee2d3ef333 (patch)
treef063738b5b4c81ad631e3d82bcfe8e691de65b22
parente5908c89870884c4d50ab31124f1c55523eff9a4 (diff)
downloadpodcast-c0b38deda139c64c9ad0dab6e10efcee2d3ef333.tar.bz2
Increment version
-rw-r--r--CHANGELOG4
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 23b3d05..0c1faf5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/Cargo.toml b/Cargo.toml
index 8f7f282..35a2dca 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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() {