Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
danigb committed Oct 6, 2024
1 parent 33693a1 commit 469e6a8
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 21 deletions.
5 changes: 0 additions & 5 deletions .changeset/five-planes-laugh.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/neat-zebras-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-eels-fry.md

This file was deleted.

12 changes: 12 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# tonal

## 6.3.0

- New `Key.majorKeyChords` and `Key.minorKeyChords` functions.

```js
import * as Key from "tonal";

Key.majorKeyChords("C").find((chord) => chord.name === "Em"); // => { name: "Em", roles: ["T", "ii/II"] }
```

- Renamed fields of key results. `secondaryDominantsMinorRelative` is now `secondaryDominantSupertonics` and `substituteDominantsMinorRelative` is now `substituteDominantSupertonics`. Previous names are kept for compatibility as deprecated (will be removed in next major version)

## 6.2.0

### Minor Changes
Expand Down
12 changes: 12 additions & 0 deletions packages/key/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tonaljs/key

## 4.11.0

- New `Key.majorKeyChords` and `Key.minorKeyChords` functions.

```js
import * as Key from "tonal";

Key.majorKeyChords("C").find((chord) => chord.name === "Em"); // => { name: "Em", roles: ["T", "ii/II"] }
```

- Renamed fields of key results. `secondaryDominantsMinorRelative` is now `secondaryDominantSupertonics` and `substituteDominantsMinorRelative` is now `substituteDominantSupertonics`. Previous names are kept for compatibility as deprecated (will be removed in next major version)

## 4.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/key/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/key",
"version": "4.10.0",
"version": "4.11.0",
"description": "Functions to work with musical keys",
"keywords": [
"key",
Expand Down
7 changes: 7 additions & 0 deletions packages/modules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tonaljs/modules

## 4.8.8

### Patch Changes

- Updated dependencies [33693a1]
- [email protected]

## 4.8.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/modules/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/modules",
"version": "4.8.7",
"version": "4.8.8",
"description": "deprecated",
"keywords": [],
"main": "dist/index.js",
Expand All @@ -10,7 +10,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"tonal": "6.2.0"
"tonal": "6.3.0"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/tonal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tonal",
"version": "6.2.0",
"version": "6.3.0",
"description": "tonaljs music theory library",
"keywords": [
"music",
Expand All @@ -24,7 +24,7 @@
"@tonaljs/core": "5.0.1",
"@tonaljs/duration-value": "4.9.0",
"@tonaljs/interval": "5.1.0",
"@tonaljs/key": "4.10.0",
"@tonaljs/key": "4.11.0",
"@tonaljs/midi": "4.10.0",
"@tonaljs/mode": "4.9.0",
"@tonaljs/note": "4.11.0",
Expand Down

0 comments on commit 469e6a8

Please sign in to comment.