aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG3
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs2
3 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 66afc92..3fc8939 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+0.5.10
+- Fix update check functionality
+
0.5.9
- Update remaining dependencies
diff --git a/Cargo.toml b/Cargo.toml
index 1458219..cb9cebe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "podcast"
-version = "0.5.9"
+version = "0.5.10"
authors = ["Nathan Jaremko <njaremko@gmail.com>"]
description = "A command line podcast manager"
license = "GPL-3.0"
diff --git a/src/main.rs b/src/main.rs
index d8dc47d..2e07e08 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -31,7 +31,7 @@ use utils::*;
use clap::{App, Arg, SubCommand};
-const VERSION: &str = "0.5.8";
+const VERSION: &str = "0.5.10";
fn main() -> Result<()> {
create_directories().chain_err(|| "unable to create directories")?;