aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs3
2 files changed, 2 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8ccf3e3..c023235 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "podcast"
edition = "2018"
-version = "0.6.0"
+version = "0.6.1"
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 c3ad6c3..3c03ab0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,3 @@
-#![feature(nll)]
#![recursion_limit = "1024"]
extern crate chrono;
@@ -33,7 +32,7 @@ use self::utils::*;
use clap::{App, Arg, SubCommand};
-const VERSION: &str = "0.6.0";
+const VERSION: &str = "0.6.1";
fn main() -> Result<()> {
create_directories().chain_err(|| "unable to create directories")?;