Skip to content

Commit

Permalink
chore: 🔖 bump version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albertms10 committed Oct 29, 2023
1 parent cdd3c41 commit e93623b
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
## 0.13.0

- fix(note)!: 💥 remove `semitones` chromatic modulo [#265](https://github.com/albertms10/music_notes/pull/265)
- feat(positioned_note): ✨ add respelling methods [#266](https://github.com/albertms10/music_notes/pull/266)
- feat(frequency)!: ✨ improve `closestPositionedNote` enharmonic spelling [#267](https://github.com/albertms10/music_notes/pull/267)
- feat(frequency): ✨ add `harmonics` related methods [#268](https://github.com/albertms10/music_notes/pull/268)
- feat(frequency): ✨ add `displayString` extension method on `ClosestPositionedNote` [#269](https://github.com/albertms10/music_notes/pull/269)
- docs(README): 📖 update recently added methods [#270](https://github.com/albertms10/music_notes/pull/270)
- feat(positioned_note): ✨ rename frequency method and expose `tuningSystem` [#271](https://github.com/albertms10/music_notes/pull/271)
- feat(interval)!: ✨ include `notes` in `distanceBetween` record [#272](https://github.com/albertms10/music_notes/pull/272)
- chore(deps): ⬆️ bump actions/cache from 3.3.1 to 3.3.2 [#274](https://github.com/albertms10/music_notes/pull/274)
- chore(deps): ⬆️ bump coverallsapp/github-action from 2.2.1 to 2.2.3 [#275](https://github.com/albertms10/music_notes/pull/275)
- chore(deps): ⬆️ bump actions/checkout from 3.6.0 to 4.0.0 [#276](https://github.com/albertms10/music_notes/pull/276)
- docs(README): 📖 fix CI badge [#277](https://github.com/albertms10/music_notes/pull/277)
- chore(deps): ⬆️ bump dart-lang/setup-dart from 1.5.0 to 1.5.1 [#278](https://github.com/albertms10/music_notes/pull/278)
- chore(deps): ⬆️ bump actions/checkout from 4.0.0 to 4.1.0 [#279](https://github.com/albertms10/music_notes/pull/279)
- refactor(chordable): ♻️ expect a `Set` for `replaceSizes` [#280](https://github.com/albertms10/music_notes/pull/280)
- perf(scalable): ⚡️ rewrite extension methods to return `Iterable` [#281](https://github.com/albertms10/music_notes/pull/281)
- refactor(scalable): ♻️ override `difference` and implement in `PitchClass` [#283](https://github.com/albertms10/music_notes/pull/283)
- refactor(interval_class): ♻️ rewrite `Interval.fromSemitonesQuality` as `resolveClosestSpelling` [#284](https://github.com/albertms10/music_notes/pull/284)
- docs(note): 📖 improve overall methods documentation [#288](https://github.com/albertms10/music_notes/pull/288)
- refactor(interval): ♻️ call `fromDelta` in `fromSemitones` constructor [#289](https://github.com/albertms10/music_notes/pull/289)
- refactor(quality): ♻️ move `fromInterval` into `Interval.fromQualityDelta` [#290](https://github.com/albertms10/music_notes/pull/290)
- feat(note): ✨ add `isEnharmonicWith` method [#291](https://github.com/albertms10/music_notes/pull/291)
- refactor(test): ♻️ create a `SplayTreeSet` of a Set instead of a List [#292](https://github.com/albertms10/music_notes/pull/292)
- refactor(int_extension): ♻️ extract `nonZeroSign` method [#293](https://github.com/albertms10/music_notes/pull/293)
- docs(positioned_note): 📖 address documentation examples [#295](https://github.com/albertms10/music_notes/pull/295)
- perf(key_signature): ⚡️ remove unneeded variable declaration in `tonality` [#294](https://github.com/albertms10/music_notes/pull/294)
- chore(deps): ⬆️ bump dart-lang/setup-dart from 1.5.1 to 1.6.0 [#296](https://github.com/albertms10/music_notes/pull/296)
- docs: 📖 remove type parameter references in doc comments [#297](https://github.com/albertms10/music_notes/pull/297)
- docs(note): 📖 use regular comments for variables [#298](https://github.com/albertms10/music_notes/pull/298)
- chore(deps): bump actions/checkout from 4.1.0 to 4.1.1 [#299](https://github.com/albertms10/music_notes/pull/299)
- feat(tuning): ✨ introduce new `Ratio`, `Cent` and move `.cents` to former class [#300](https://github.com/albertms10/music_notes/pull/300)
- refactor(tuning_system)!: ♻️ move `referenceNote` to `TuningSystem` [#301](https://github.com/albertms10/music_notes/pull/301)
- feat(tuning)!: 💥 add `PythagoreanTuning` tuning system [#273](https://github.com/albertms10/music_notes/pull/273)

**Full Changelog**: [`v0.12.0...v0.13.0`](https://github.com/albertms10/music_notes/compare/v0.12.0...v0.13.0)

## 0.12.0

- ⚡️ perf(chord_pattern): call `sort` instead of creating a `SplayTreeSet` in [#232](https://github.com/albertms10/music_notes/pull/232)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: music_notes
description: Comprehensive set of utilities for working with music theory concepts.
version: 0.12.0
version: 0.13.0

repository: https://github.com/albertms10/music_notes.git

Expand Down

0 comments on commit e93623b

Please sign in to comment.