diff --git a/CHANGELOG.md b/CHANGELOG.md index 04b43d1bc96..5dacce89b29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## [unreleased] +## [2.2.1] - 2019-10-23 +* Fix bug with mensural notation layout + ## [2.2.0] - 2019-10-17 * Support for superscript and subscript in `` * Support for chord-symbol parsing in MusicXML (@earboxer) diff --git a/include/vrv/vrvdef.h b/include/vrv/vrvdef.h index 01352eafdf3..d714be05de2 100644 --- a/include/vrv/vrvdef.h +++ b/include/vrv/vrvdef.h @@ -34,10 +34,10 @@ namespace vrv { //---------------------------------------------------------------------------- #define VERSION_MAJOR 2 -#define VERSION_MINOR 3 -#define VERSION_REVISION 0 +#define VERSION_MINOR 2 +#define VERSION_REVISION 1 // Adds "-dev" in the version number - should be set to false for releases -#define VERSION_DEV true +#define VERSION_DEV false enum MEIVersion { MEI_UNDEFINED = 0, MEI_2013, MEI_3_0_0, MEI_4_0_0 };