Skip to content

Commit

Permalink
Set up for initial release.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed May 13, 2016
1 parent 7f62ed5 commit 6a0f7f0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## Unreleased
All notable changes to this project will be documented in this file.
This change log follows the conventions of
[keepachangelog.com](http://keepachangelog.com/).

## [Unreleased][unreleased]

Nothing so far.

## 0.1.0 - 2016-05-13

### Added

- Set up initial project structure.
- Selector to choose MIDI output as trigger destination.

[unreleased]: https://github.com/brunchboy/beat-link/compare/v0.1.0...HEAD
10 changes: 9 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject beat-link-trigger "0.1.0-SNAPSHOT"
(defproject beat-link-trigger "0.1.0"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
Expand All @@ -17,6 +17,14 @@

:main beat-link-trigger.core
:uberjar-name "beat-link-trigger.jar"

;; Add project name and version information to jar file manifest
:manifest {"Name" ~#(str (clojure.string/replace (:group %) "." "/")
"/" (:name %) "/")
"Package" ~#(str (:group %) "." (:name %))
"Specification-Title" ~#(:name %)
"Specification-Version" ~#(:version %)}

:min-lein-version "2.0.0"
)

0 comments on commit 6a0f7f0

Please sign in to comment.