Skip to content

Commit

Permalink
2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmdude committed Feb 13, 2022
1 parent 177e95d commit 1723e61
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion browser/midiwriter.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var MidiWriter = (function () {
* @return {Constants}
*/
var Constants = {
VERSION: '2.0.2',
VERSION: '2.1.0',
HEADER_CHUNK_TYPE: [0x4d, 0x54, 0x68, 0x64],
// Mthd
HEADER_CHUNK_LENGTH: [0x00, 0x00, 0x00, 0x06],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "midi-writer-js",
"version": "2.0.2",
"version": "2.1.0",
"description": "A library providing an API for generating MIDI files.",
"main": "build/index.js",
"types": "types.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

const Constants = {
VERSION : '2.0.2',
VERSION : '2.1.0',
HEADER_CHUNK_TYPE : [0x4d, 0x54, 0x68, 0x64], // Mthd
HEADER_CHUNK_LENGTH : [0x00, 0x00, 0x00, 0x06], // Header size for SMF
HEADER_CHUNK_FORMAT0 : [0x00, 0x00], // Midi Type 0 id
Expand Down

0 comments on commit 1723e61

Please sign in to comment.