Skip to content

Commit

Permalink
Release 4.7.2 (#354)
Browse files Browse the repository at this point in the history
* chore: update versions

* bump 4.7.2

* chore: update browser version
  • Loading branch information
danigb authored Nov 29, 2022
1 parent 996ed99 commit 21d2f7f
Show file tree
Hide file tree
Showing 69 changed files with 801 additions and 144 deletions.
15 changes: 10 additions & 5 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,17 @@ To create a new module:
Releases are built using changesets: https://turbo.build/repo/docs/handbook/publishing-packages/versioning-and-publishing:

```
# Add a new changeset
yarn changeset
# First select packages and which version (major, minor, bump)
npx changeset
# Create new versions of packages
yarn changeset version
# Update version and CHANGELOG of each package
npx changeset version
# Publish all changed packages to npm
yarn changeset publish
npx changeset publish
# Create commit and push
git add .
git commit -m
push
```
16 changes: 16 additions & 0 deletions packages/abc-notation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tonaljs/abc-notation

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/core@4.7.2

## 4.7.1

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/core@4.6.12

## 4.7.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 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.7.0",
"version": "4.7.2",
"description": "Parse musical notes in abc notation",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,7 +9,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.6.11"
"@tonaljs/core": "^4.7.2"
},
"keywords": [
"note",
Expand Down
16 changes: 16 additions & 0 deletions packages/array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tonaljs/array

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/core@4.7.2

## 4.6.12

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/core@4.6.12

## 4.6.11

### 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.6.11",
"version": "4.7.2",
"description": "Functions to work with arrays of tonal objects",
"keywords": [
"array",
Expand All @@ -15,7 +15,7 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.6.11"
"@tonaljs/core": "^4.7.2"
},
"author": "danigb@gmail.com",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/chord-detect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @tonaljs/chord-detect

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/core@4.7.2
- @tonaljs/chord-type@4.7.2
- @tonaljs/pcset@4.7.2

## 4.7.1

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/chord-type@4.7.1
- @tonaljs/core@4.6.12
- @tonaljs/pcset@4.7.1

## 4.7.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.7.0",
"version": "4.7.2",
"description": "Detect chord name based on note names",
"keywords": [
"chord-detect",
Expand All @@ -15,9 +15,9 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-type": "^4.7.0",
"@tonaljs/core": "^4.6.11",
"@tonaljs/pcset": "^4.7.0"
"@tonaljs/chord-type": "^4.7.2",
"@tonaljs/core": "^4.7.2",
"@tonaljs/pcset": "^4.7.2"
},
"author": "danigb@gmail.com",
"license": "MIT",
Expand Down
16 changes: 16 additions & 0 deletions packages/chord-dictionary/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tonaljs/chord-dictionary

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/chord-type@4.7.2

## 4.6.12

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/chord-type@4.7.1

## 4.6.11

### 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.6.11",
"version": "4.7.2",
"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": "^4.7.0"
"@tonaljs/chord-type": "^4.7.2"
},
"author": "danigb@gmail.com",
"license": "MIT",
Expand Down
18 changes: 18 additions & 0 deletions packages/chord-type/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @tonaljs/chord-type

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/core@4.7.2
- @tonaljs/pcset@4.7.2

## 4.7.1

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/core@4.6.12
- @tonaljs/pcset@4.7.1

## 4.7.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 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": "4.7.0",
"version": "4.7.2",
"description": "A dictionary of musical chords",
"keywords": [
"chord",
Expand All @@ -17,8 +17,8 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/core": "^4.6.11",
"@tonaljs/pcset": "^4.7.0"
"@tonaljs/core": "^4.7.2",
"@tonaljs/pcset": "^4.7.2"
},
"author": "danigb@gmail.com",
"license": "MIT",
Expand Down
26 changes: 26 additions & 0 deletions packages/chord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @tonaljs/chord

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/core@4.7.2
- @tonaljs/chord-detect@4.7.2
- @tonaljs/chord-type@4.7.2
- @tonaljs/collection@4.7.2
- @tonaljs/pcset@4.7.2
- @tonaljs/scale-type@4.7.2

## 4.7.1

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/chord-detect@4.7.1
- @tonaljs/chord-type@4.7.1
- @tonaljs/collection@4.7.1
- @tonaljs/core@4.6.12
- @tonaljs/pcset@4.7.1
- @tonaljs/scale-type@4.7.1

## 4.7.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": "4.7.0",
"version": "4.7.2",
"description": "Musical chords and its relations",
"keywords": [
"chord",
Expand All @@ -16,12 +16,12 @@
],
"types": "dist/index.d.ts",
"dependencies": {
"@tonaljs/chord-detect": "^4.7.0",
"@tonaljs/chord-type": "^4.7.0",
"@tonaljs/collection": "^4.7.0",
"@tonaljs/core": "^4.6.11",
"@tonaljs/pcset": "^4.7.0",
"@tonaljs/scale-type": "^4.7.0"
"@tonaljs/chord-detect": "^4.7.2",
"@tonaljs/chord-type": "^4.7.2",
"@tonaljs/collection": "^4.7.2",
"@tonaljs/core": "^4.7.2",
"@tonaljs/pcset": "^4.7.2",
"@tonaljs/scale-type": "^4.7.2"
},
"author": "danigb@gmail.com",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/collection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tonaljs/collection

## 4.7.2

### Patch Changes

- Unify package versions

## 4.7.1

### Patch Changes

- fix npm publish problem

## 4.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/collection/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/collection",
"version": "4.7.0",
"version": "4.7.2",
"description": "Utility functions to work with collections (arrays)",
"keywords": [
"collection",
Expand Down
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tonaljs/core

## 4.7.2

### Patch Changes

- Unify package versions

## 4.6.12

### Patch Changes

- fix npm publish problem

## 4.6.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/core",
"version": "4.6.11",
"version": "4.7.2",
"description": "Music theory library",
"keywords": [
"music",
Expand Down
12 changes: 12 additions & 0 deletions packages/duration-value/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tonaljs/duration-value

## 4.7.2

### Patch Changes

- Unify package versions

## 4.7.1

### Patch Changes

- fix npm publish problem

## 4.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/duration-value/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonaljs/duration-value",
"version": "4.7.0",
"version": "4.7.2",
"description": "Musical duration values",
"keywords": [
"duration-value",
Expand Down
16 changes: 16 additions & 0 deletions packages/interval/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @tonaljs/interval

## 4.7.2

### Patch Changes

- Unify package versions
- Updated dependencies
- @tonaljs/core@4.7.2

## 4.7.1

### Patch Changes

- fix npm publish problem
- Updated dependencies
- @tonaljs/core@4.6.12

## 4.7.0

### Minor Changes
Expand Down
Loading

0 comments on commit 21d2f7f

Please sign in to comment.