Skip to content

Commit

Permalink
move to project toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed May 1, 2019
1 parent de7a2f9 commit 72fdcb2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

# master

# v0.6.0
* Move to musescore 3

# v0.5.0
* Preliminary scale identification method (not exported)

# v0.4.0
* added drumkey for Musescore (its actually the GM)

# v0.3.0
* Printing/saving a `midi` or `notes` struct into a score is now possible through MuseScore.
Expand Down
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name = "MusicManipulations"
uuid = "274955c0-c284-5bf7-b122-5ecd51c559de"
repo = "https://github.com/JuliaMusic/MusicManipulations.jl.git"
version = "0.6.1"

[deps]
DefaultApplication = "3f0dd361-4fe0-5fc6-8523-80b14ec94d85"
Expand Down
6 changes: 0 additions & 6 deletions REQUIRE

This file was deleted.

2 changes: 1 addition & 1 deletion src/data_handling/timeseries.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ timeseries are always `Float64`*).
The `property` can be `:velocity`, `:pitch`, or `:duration`. Grid bins without any
notes are given the value `0`. This **can be problematic** if you request for
`:pitch` and your `notes` also include notes which actually have pitch `0`,
i.e. `C0`.
i.e. `C-1`.
"""
function timeseries(notes, property, f, grid = 0:1//notes.tpq:1)
isgrid(grid)
Expand Down

2 comments on commit 72fdcb2

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/486

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.1 -m "<description of version>" 72fdcb2cf98c4b160fc717cb2cbbc589b730c53f
git push origin v0.6.1

Please sign in to comment.