Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
danigb committed Jan 3, 2025
1 parent b791283 commit 0c16143
Show file tree
Hide file tree
Showing 54 changed files with 392 additions and 123 deletions.
17 changes: 0 additions & 17 deletions .changeset/odd-rocks-tan.md

This file was deleted.

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

## 6.4.0

### Export `NoteType` and `IntervalType` types

Typescript types `NoteType` and `IntervalType` are now exported:

```ts
import { Interval, IntervalType, Note, NoteType } from "tonal";

const note: NoteType = Note.get("C4");
const interval: IntervalType = Interval.get("P4");
```

## 6.3.0

- New `Key.majorKeyChords` and `Key.minorKeyChords` functions.
Expand Down
8 changes: 8 additions & 0 deletions packages/abc-notation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tonaljs/abc-notation

## 4.9.1

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0
- @tonaljs/pitch-distance@5.0.5

## 4.9.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/abc-notation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/abc-notation",
"version": "4.9.0",
"version": "4.9.1",
"description": "Parse musical notes in abc notation",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,8 +9,8 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/pitch-distance": "5.0.4",
"@tonaljs/pitch-note": "6.0.0"
"@tonaljs/pitch-distance": "5.0.5",
"@tonaljs/pitch-note": "6.1.0"
},
"keywords": [
"note",
Expand Down
7 changes: 7 additions & 0 deletions packages/array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tonaljs/array

## 4.8.4

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0

## 4.8.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/array/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/array",
"version": "4.8.3",
"version": "4.8.4",
"description": "Functions to work with arrays of tonal objects",
"keywords": [
"array",
Expand All @@ -15,7 +15,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/pitch-note": "6.0.0"
"@tonaljs/pitch-note": "6.1.0"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/chord-detect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tonaljs/chord-detect

## 4.9.1

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0
- @tonaljs/pcset@4.10.1
- @tonaljs/chord-type@5.1.1

## 4.9.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/chord-detect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord-detect",
"version": "4.9.0",
"version": "4.9.1",
"description": "Detect chord name based on note names",
"keywords": [
"chord-detect",
Expand All @@ -16,9 +16,9 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-type": "5.1.0",
"@tonaljs/pitch-note": "6.0.0",
"@tonaljs/pcset": "4.10.0"
"@tonaljs/chord-type": "5.1.1",
"@tonaljs/pitch-note": "6.1.0",
"@tonaljs/pcset": "4.10.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/chord-dictionary/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tonaljs/chord-dictionary

## 4.8.6

### Patch Changes

- @tonaljs/chord-type@5.1.1

## 4.8.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/chord-dictionary/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord-dictionary",
"version": "4.8.5",
"version": "4.8.6",
"description": "A dictionary of musical chords",
"keywords": [],
"main": "dist/index.js",
Expand All @@ -10,7 +10,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-type": "5.1.0"
"@tonaljs/chord-type": "5.1.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/chord-type/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @tonaljs/chord-type

## 5.1.1

### Patch Changes

- @tonaljs/pcset@4.10.1

## 5.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/chord-type/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord-type",
"version": "5.1.0",
"version": "5.1.1",
"description": "A dictionary of musical chords",
"keywords": [
"chord",
Expand All @@ -17,7 +17,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/pcset": "4.10.0"
"@tonaljs/pcset": "4.10.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/chord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tonaljs/chord

## 6.1.1

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0
- @tonaljs/pcset@4.10.1
- @tonaljs/pitch-distance@5.0.5
- @tonaljs/chord-detect@4.9.1
- @tonaljs/chord-type@5.1.1
- @tonaljs/scale-type@4.9.1

## 6.1.0

### Minor Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/chord/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/chord",
"version": "6.1.0",
"version": "6.1.1",
"description": "Musical chords and its relations",
"keywords": [
"chord",
Expand All @@ -16,14 +16,14 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-detect": "4.9.0",
"@tonaljs/chord-type": "5.1.0",
"@tonaljs/chord-detect": "4.9.1",
"@tonaljs/chord-type": "5.1.1",
"@tonaljs/collection": "4.9.0",
"@tonaljs/interval": "^5.1.0",
"@tonaljs/pcset": "4.10.0",
"@tonaljs/pitch-distance": "5.0.4",
"@tonaljs/pitch-note": "6.0.0",
"@tonaljs/scale-type": "4.9.0"
"@tonaljs/pcset": "4.10.1",
"@tonaljs/pitch-distance": "5.0.5",
"@tonaljs/pitch-note": "6.1.0",
"@tonaljs/scale-type": "4.9.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tonaljs/core

## 5.0.2

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-interval@6.1.0
- @tonaljs/pitch-note@6.1.0
- @tonaljs/pitch-distance@5.0.5

## 5.0.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/core",
"version": "5.0.1",
"version": "5.0.2",
"description": "Music theory library",
"keywords": [
"music",
Expand All @@ -19,9 +19,9 @@
},
"dependencies": {
"@tonaljs/pitch": "5.0.2",
"@tonaljs/pitch-interval": "6.0.0",
"@tonaljs/pitch-distance": "5.0.4",
"@tonaljs/pitch-note": "6.0.0"
"@tonaljs/pitch-interval": "6.1.0",
"@tonaljs/pitch-distance": "5.0.5",
"@tonaljs/pitch-note": "6.1.0"
},
"scripts": {
"build": "tsup index.ts --sourcemap --dts --format esm,cjs"
Expand Down
9 changes: 9 additions & 0 deletions packages/key/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tonaljs/key

## 4.11.1

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0
- @tonaljs/note@4.12.0
- @tonaljs/roman-numeral@4.9.1

## 4.11.0

- New `Key.majorKeyChords` and `Key.minorKeyChords` functions.
Expand Down
12 changes: 6 additions & 6 deletions packages/key/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/key",
"version": "4.11.0",
"version": "4.11.1",
"description": "Functions to work with musical keys",
"keywords": [
"key",
Expand All @@ -15,13 +15,13 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/pitch-note": "6.0.0",
"@tonaljs/note": "4.11.0",
"@tonaljs/roman-numeral": "4.9.0"
"@tonaljs/pitch-note": "6.1.0",
"@tonaljs/note": "4.12.0",
"@tonaljs/roman-numeral": "4.9.1"
},
"devDependencies": {
"@tonaljs/chord": "6.1.0",
"@tonaljs/scale": "4.13.0"
"@tonaljs/chord": "6.1.1",
"@tonaljs/scale": "4.13.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/midi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @tonaljs/midi

## 4.10.1

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0

## 4.10.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/midi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/midi",
"version": "4.10.0",
"version": "4.10.1",
"description": "Functions to work with midi numbers",
"keywords": [
"note",
Expand All @@ -16,7 +16,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/pitch-note": "6.0.0"
"@tonaljs/pitch-note": "6.1.0"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
10 changes: 10 additions & 0 deletions packages/mode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @tonaljs/mode

## 4.9.1

### Patch Changes

- Updated dependencies [b791283]
- @tonaljs/pitch-note@6.1.0
- @tonaljs/pcset@4.10.1
- @tonaljs/pitch-distance@5.0.5
- @tonaljs/scale-type@4.9.1

## 4.9.0

### Minor Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/mode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/mode",
"version": "4.9.0",
"version": "4.9.1",
"description": "Functions to work with musical modes",
"keywords": [
"mode",
Expand All @@ -16,11 +16,11 @@
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/collection": "4.9.0",
"@tonaljs/pitch-note": "6.0.0",
"@tonaljs/pitch-distance": "5.0.4",
"@tonaljs/pitch-note": "6.1.0",
"@tonaljs/pitch-distance": "5.0.5",
"@tonaljs/interval": "5.1.0",
"@tonaljs/pcset": "4.10.0",
"@tonaljs/scale-type": "4.9.0"
"@tonaljs/pcset": "4.10.1",
"@tonaljs/scale-type": "4.9.1"
},
"author": "[email protected]",
"license": "MIT",
Expand Down
Loading

0 comments on commit 0c16143

Please sign in to comment.