Explorar el Código

Merge branch 'release/0.8.5.1' into develop

sschmid hace 4 años
padre
commit
5b71feeb42
Se han modificado 3 ficheros con 10 adiciones y 2 borrados
  1. 8 0
      CHANGELOG.md
  2. 1 1
      package.json
  3. 1 1
      src/OpenSheetMusicDisplay/OpenSheetMusicDisplay.ts

+ 8 - 0
CHANGELOG.md

@@ -1,3 +1,11 @@
+## [0.8.6](https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/compare/0.8.5...0.8.6)  (2020-09-15)
+
+### Bug Fixes
+* **Voltas, Tabs**: Fix regression in 0.8.5 where repetition volta shift and tabnote svg id were fixes were not applied (will soon be fixed by vexflow patch script)
+
+### Miscellaneous
+* **Build**: Build size down to 1.1MB again from mysterious 1.3MB increase in 0.8.5
+
 ## [0.8.5](https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/compare/0.8.4...0.8.5) (2020-09-08)
 
 

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "opensheetmusicdisplay",
-  "version": "0.8.5",
+  "version": "0.8.6",
   "description": "An open source JavaScript engine for displaying MusicXML based on VexFlow.",
   "main": "build/opensheetmusicdisplay.min.js",
   "typings": "build/dist/src/",

+ 1 - 1
src/OpenSheetMusicDisplay/OpenSheetMusicDisplay.ts

@@ -28,7 +28,7 @@ import { NoteEnum } from "../Common/DataObjects/Pitch";
  * After the constructor, use load() and render() to load and render a MusicXML file.
  */
 export class OpenSheetMusicDisplay {
-    private version: string = "0.8.5-dev"; // getter: this.Version
+    private version: string = "0.8.6-release"; // getter: this.Version
     // at release, bump version and change to -release, afterwards to -dev again
 
     /**