From 6f711fbc66045dda40d2c745beffae357b2c9fc7 Mon Sep 17 00:00:00 2001 From: Nathan Jaremko Date: Wed, 16 May 2018 23:44:57 -0400 Subject: Update regex crate to 1.0 --- CHANGELOG | 3 +++ Cargo.toml | 4 ++-- src/main.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 56218d4..9f5a7b0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +0.5.8 +- Update regex crate to 1.0 + 0.5.7 - Updates filename escaping to generally only affect Windows (because Microsoft filesystems can't handle a bunch of characters) diff --git a/Cargo.toml b/Cargo.toml index ca03821..1b4724e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "podcast" -version = "0.5.7" +version = "0.5.8" authors = ["Nathan Jaremko "] description = "A command line podcast manager" license = "GPL-3.0" @@ -23,7 +23,7 @@ clap = "2.28" error-chain = "0.11" lazy_static = "1.0" rayon = "0.9" -regex = "0.2" +regex = "1.0" reqwest = "0.8" rss = {version = "1.2", features = ["from_url"] } serde = "1.0" diff --git a/src/main.rs b/src/main.rs index b55bff9..d8dc47d 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.7"; +const VERSION: &str = "0.5.8"; fn main() -> Result<()> { create_directories().chain_err(|| "unable to create directories")?; -- cgit v1.2.3