Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Dec 28, 2020
1 parent 7cea4d7 commit ea772ac
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/uberjar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:

- name: Determine überjar name from git version, and snapshot status
run: |
echo "::set-env name=uberjar_name::open-beat-control-$git_version.jar"
echo "uberjar_name=open-beat-control-$git_version.jar" >> $GITHUB_ENV
if [[ release_tag =~ .*-SNAPSHOT ]]
then
echo "::set-env name=release_snapshot::true"
echo "release_snapshot=true" >> $GITHUB_ENV
else
echo "::set-env name=release_snapshot::false"
echo "release_snapshot=false" >> $GITHUB_ENV
fi
- name: Cache Leiningen dependencies
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ This change log follows the conventions of

## [Unreleased][unreleased]

Nothing so far.

## [0.1.1] - 2020-12-28

### Changed

- Updated `beat-Link` and `beat-carabiner` libraries to incorporate
fixes and new features.
fixes and new features as well as Ableton Link 3.0.3.
- Added type hints for the Clojure compiler to avoid reflection and
improve runtime performance.

Expand All @@ -18,5 +22,6 @@ This change log follows the conventions of
First set of features to receive feedback that people are successfully
using.

[unreleased]: https://github.com/Deep-Symmetry/open-beat-control/compare/v0.1.0...HEAD
[unreleased]: https://github.com/Deep-Symmetry/open-beat-control/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/Deep-Symmetry/open-beat-control/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/Deep-Symmetry/open-beat-control/compare/4b8707c725ee7395c6844a8eb56c91900387408a...v0.1.0
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
:url "http://www.eclipse.org/legal/epl-v20.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/tools.cli "1.0.194"]
[org.deepsymmetry/beat-link "0.6.3-SNAPSHOT"]
[beat-carabiner "0.2.3-SNAPSHOT"]
[org.deepsymmetry/beat-link "0.6.3"]
[beat-carabiner "0.2.3"]
[overtone/osc-clj "0.9.0"]
[com.taoensso/timbre "4.10.0"]
[com.fzakaria/slf4j-timbre "0.3.19"]]
[com.taoensso/timbre "5.1.0"]
[com.fzakaria/slf4j-timbre "0.3.20"]]
:repositories {"sonatype-snapshots" "https://oss.sonatype.org/content/repositories/snapshots"}

:profiles {:dev {:repl-options {:init-ns open-beat-control.core
Expand Down

0 comments on commit ea772ac

Please sign in to comment.