From 6536622bd1946cf297a311a946d5ad9eba126263 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 20 May 2017 11:29:51 -0500 Subject: Update CHANGELOG --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57aa843..fc42b0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [0.2.0] ### Added - iTunes Source Support ### Fixed - Lyricli freezes when no track found +- README URLs ## 0.1.0 - 2017-05-20 ### Added @@ -23,4 +24,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Parsing of options to match legacy lyricli - Placeholder for the library with expected endpoints -[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/master...develop +[Unreleased]: https://github.com/lyricli-app/lyricli/compare/0.1.0...0.2.0 +[Unreleased]: https://github.com/lyricli-app/lyricli/compare/master...develop -- cgit From b7375241b8ca1e34d7aca4aa77414f699985cdf7 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 20 May 2017 11:30:21 -0500 Subject: Update the Version --- Makefile | 2 +- Sources/lyricli.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0f57bd9..6e2d27d 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ document: build --author Lyricli \ --author_url https://github.com/lyricli-app \ --github_url https://github.com/lyricli-app/lyricli \ - --module-version 0.1.0 \ + --module-version 0.2.0 \ --module Lyricli \ clean: diff --git a/Sources/lyricli.swift b/Sources/lyricli.swift index 7d77a51..91e0c51 100644 --- a/Sources/lyricli.swift +++ b/Sources/lyricli.swift @@ -2,7 +2,7 @@ class Lyricli { // Version of the application - static var version = "0.1.0" + static var version = "0.2.0" // Flag that controls whether we should show the track artist and name before // the lyrics -- cgit