Skip to content

Commit

Permalink
release 0.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hlolli committed May 18, 2019
1 parent 4db51e7 commit 955ab97
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log
## MASTER


## Version 0.10.5 (18th May 2019)
* overtone can now be used with tools.deps
* fix classException for note and chord function $428
* failures in the test runner fixed
Expand Down
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,24 @@ collaborating with music. It provides:
### Installation

```sh
# Install lein2
# Install the clojure-cli tools
# https://clojure.org/guides/getting_started

# Create a deps.edn file with a minimum
# {:deps {overtone/overtone {:mvn/version "0.10.5"}}}
$ clojure
$ (use 'overtone.live)
```
```sh
# Or install leiningen
# https://github.com/technomancy/leiningen
$ lein new insane-noises
# add the following dependencies to insane-noises/project.clj
# [org.clojure/clojure "1.9.0"]
# [overtone "0.10.4"]
# [overtone "0.10.5"]
$ cd insane-noises
$ lein repl
Expand Down Expand Up @@ -177,12 +187,14 @@ Downloads and the source repository can be found on GitHub:
Clone the repository on GitHub to get started developing, and if you are
ready to submit a patch then fork your own copy and do a pull request.

## Lein Support
## clojure.tools.deps and Leiningen Support

Overtone and its dependencies are on http://clojars.org, and the
dependency for your `project.clj` is:
dependency for your `deps.edn` is:
{overtone/overtone {:mvn/version "0.10.5"}}

[overtone "0.10.4"]
or for your `project.clj`
[overtone "0.10.5"]

## Contributors

Expand Down
2 changes: 1 addition & 1 deletion src/overtone/version.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(def OVERTONE-VERSION {:major 0
:minor 10
:patch 4
:patch 5
:snapshot false})

(def OVERTONE-VERSION-STR
Expand Down

0 comments on commit 955ab97

Please sign in to comment.