Skip to content

Commit

Permalink
Merge de458c3 into 8105c7f
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Feb 11, 2017
2 parents 8105c7f + de458c3 commit 8c0f871
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Contributors
* Carl Thome <https://github.com/carlthome>
* Seth Kranzler <https://github.com/polyrhythmatic>
* Waldir Pimenta <https://github.com/waldyrious>
* Hojin Lee <https://github.com/hojinlee>


Some feature extraction code was based on <https://github.com/ronw/frontend> by Ron Weiss.
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Bug fixes
Humphrey*
- `#450`_ enhanced numerical stability for ``librosa.util.softmask``. *Brian McFee*
- `#467`_ correction to chroma documentation. *Seth Kranzler*
- `#501`_ fixed a numpy 1.12 compatibility error in ``pitch_tuning``. *Hojin Lee*

New features

Expand Down Expand Up @@ -104,6 +105,7 @@ API changes and compatibility
has been renamed to `ref`.


.. _#501: https://github.com/librosa/librosa/pull/501
.. _#480: https://github.com/librosa/librosa/pull/480
.. _#467: https://github.com/librosa/librosa/pull/467
.. _#450: https://github.com/librosa/librosa/pull/450
Expand Down
3 changes: 3 additions & 0 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ multiple spectral features, and beat-synchronous feature aggregation.
# Load the example clip
y, sr = librosa.load(librosa.util.example_audio_file())
# Set the hop length; at 22050 Hz, 512 samples ~= 23ms
hop_length = 512
# Separate harmonics and percussives into two waveforms
y_harmonic, y_percussive = librosa.effects.hpss(y)
Expand Down
2 changes: 1 addition & 1 deletion librosa/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""Version info"""

short_version = '0.5'
version = '0.5.0dev'
version = '0.5.0rc0'

0 comments on commit 8c0f871

Please sign in to comment.