aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Jaremko2019-06-20 09:52:54 -0400
committerNathan Jaremko2019-06-20 09:52:54 -0400
commitff1f8f3b0dbfdf5abfcb03db56bdf83637e630b6 (patch)
tree75cf1a6871848c88ec0e3b9898bfcf64e051173f
parent750fc36a40c194b97624d48d88fd3f22a5f5d7e0 (diff)
downloadpodcast-ff1f8f3b0dbfdf5abfcb03db56bdf83637e630b6.tar.bz2
Support stable0.12.0
-rw-r--r--CHANGELOG3
-rw-r--r--Cargo.toml8
-rw-r--r--src/main.rs2
3 files changed, 7 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 64a8c88..3cdeb6b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+0.12.0
+- Remove nightly only features, works on stable now.
+
0.11.0
- Add podcast search support. Podcast index is a work in progress, but I'm working on it.
diff --git a/Cargo.toml b/Cargo.toml
index 241316a..83b3381 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "podcast"
edition = "2018"
-version = "0.11.0"
+version = "0.12.0"
authors = ["Nathan Jaremko <njaremko@gmail.com>"]
description = "A command line podcast manager"
license = "GPL-3.0"
@@ -21,13 +21,13 @@ name = "podcast"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
clap = "2.33"
-dirs = "1.0"
+dirs = "2.0"
failure = "0.1"
lazy_static = "1.3"
-rayon = "1.0"
+rayon = "1.1"
regex = "1.1"
reqwest = "0.9"
-rss = {version = "1.7", features = ["from_url"] }
+rss = {version = "1.8", features = ["from_url"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
diff --git a/src/main.rs b/src/main.rs
index 08fa545..f7d6fe8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,3 @@
-#![feature(impl_trait_in_bindings)]
-
extern crate chrono;
extern crate clap;
extern crate dirs;