Skip to content

Commit

Permalink
Publish v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmdude committed Sep 28, 2023
1 parent 6caabc7 commit 862c6f8
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: '3.1.0',
VERSION: '3.1.1',
HEADER_CHUNK_TYPE: [0x4d, 0x54, 0x68, 0x64],
HEADER_CHUNK_LENGTH: [0x00, 0x00, 0x00, 0x06],
HEADER_CHUNK_FORMAT0: [0x00, 0x00],
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": "3.1.0",
"version": "3.1.1",
"description": "A library providing an API for generating MIDI files.",
"main": "build/index.js",
"types": "build/types/main.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

const Constants = {
VERSION : '3.1.0',
VERSION : '3.1.1',
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 862c6f8

Please sign in to comment.