From 8a7d6d9f1be8a73f67d5c10c44b1a8f34c76ca57 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Thu, 28 Dec 2017 22:41:22 +0200 Subject: [PATCH] Add an empty CHANGELOG that follows keepachangelog.com format. Closes #23. --- CHANGELOG | 10 ++++++++++ hammond-data/src/parser.rs | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..6677a79 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,10 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.3.0] - xxxx-xx-xx + diff --git a/hammond-data/src/parser.rs b/hammond-data/src/parser.rs index 00afbd0..ecb610c 100644 --- a/hammond-data/src/parser.rs +++ b/hammond-data/src/parser.rs @@ -40,7 +40,6 @@ pub(crate) fn new_podcast(chan: &Channel, source_id: i32) -> NewPodcast { } /// Parses an `rss::Item` into a `NewEpisode` Struct. -// TODO: parse itunes duration extension. pub(crate) fn new_episode(item: &Item, parent_id: i32) -> Result { if item.title().is_none() { bail!("No title specified for the item.")