From 8b945f7eefe50a5d4230a765b8be9adb94e1678b Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 12 Nov 2016 23:57:19 -0600 Subject: Adds a changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CHANGELOG.md (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b6712ba --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +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] +### Added +- 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 -- cgit From fc3f842abd1fd804fbb7a04f123c2102a785dfc3 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Fri, 19 May 2017 00:12:14 -0500 Subject: Add changes to CHANGELOG --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index b6712ba..74adbd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added +- Apache License +- Documentation to help use lyricli and contribute +- Makefile to help build and install +- CI integration +- Lyrics engine to fetch the lyrics from lyricswiki +- Arguments source to read song and artist from command line - Parsing of options to match legacy lyricli - Placeholder for the library with expected endpoints -- cgit From 5398a7be137c5f4567ec535242eb899a3715269c Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Fri, 19 May 2017 00:33:00 -0500 Subject: Add documentation to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 74adbd2..810e765 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] ### Added +- Documentation with Jazzy / SourceKitten - Apache License - Documentation to help use lyricli and contribute - Makefile to help build and install -- cgit From 0d4485a445dd387235c141afca7764481eac0311 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 20 May 2017 09:50:16 -0500 Subject: Update the version --- CHANGELOG.md | 2 +- Makefile | 2 +- Sources/lyricli.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 810e765..029adac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.1.0 - 2017-05-20 ### Added - Documentation with Jazzy / SourceKitten - Apache License diff --git a/Makefile b/Makefile index 499e1d1..0f57bd9 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.0.0 \ + --module-version 0.1.0 \ --module Lyricli \ clean: diff --git a/Sources/lyricli.swift b/Sources/lyricli.swift index e7d14b9..7d77a51 100644 --- a/Sources/lyricli.swift +++ b/Sources/lyricli.swift @@ -2,7 +2,7 @@ class Lyricli { // Version of the application - static var version = "0.0.0" + static var version = "0.1.0" // Flag that controls whether we should show the track artist and name before // the lyrics -- cgit