Skip to content

Commit 01c2fdd

Browse files
committed
Merge tag '0.4.0' into develop
0.4.0
2 parents 98b7f57 + beee93c commit 01c2fdd

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.4.0] - 2024-09-27
4+
### Changed
5+
- use pretty_midi instead of an internal copy (revert)
6+
7+
### Added
8+
- streamlit dashboards for development flow
9+
- MidiFile interface to merge multiple files
10+
311
## [0.3.4] - 2024-09-22
412
### Fixed
513
- dataframe build method

fortepyan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from fortepyan.midi.structures import MidiFile, MidiPiece
55

66
__all__ = ["view", "MidiFile", "MidiPiece"]
7-
__version__ = "0.3.4"
7+
__version__ = "0.4.0"
88

99
# Pretty MIDI will throw an unwanted error for large files with high PPQ
1010
# This is a workaround

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "fortepyan"
9-
version = "0.3.4"
9+
version = "0.4.0"
1010
description = "Process MIDI piano with (almost) no pain"
1111
readme = "README.md"
1212
authors = [{ name = "Piano For AI", email = "[email protected]" }]
@@ -52,7 +52,7 @@ packages = [
5252
]
5353

5454
[tool.bumpver]
55-
current_version = "0.3.4"
55+
current_version = "0.4.0"
5656
version_pattern = "MAJOR.MINOR.PATCH"
5757
commit_message = "bump version {old_version} -> {new_version}"
5858
commit = false

0 commit comments

Comments
 (0)