Skip to content

Commit

Permalink
bumped version and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoertink committed Jun 15, 2016
1 parent b32a83c commit 0d2760d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -24,12 +24,14 @@ dependencies:
require "medley"
# List out a scale
Medley::Notes.by_scale('Cmaj') #=> ["C", "D", "E", "F", "G", "A", "B", "C"]
scale = Medley::Scales.new('Cmaj')
scale.notes #=> ["C", "D", "E", "F", "G", "A", "B", "C"]
# Play with a note
note = Medley::Notes.new("G")
puts note.halfstep_up # => G#
puts note.wholestep_up # => A
puts note.sharp? #=> false
```

## Development
Expand Down
2 changes: 1 addition & 1 deletion src/medley/version.cr
@@ -1,3 +1,3 @@
module Medley
VERSION = "0.2.0"
VERSION = "0.2.1"
end

0 comments on commit 0d2760d

Please sign in to comment.