diff --git a/CHANGELOG.md b/CHANGELOG.md index bae517c95f1..4a0b13a68c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [3.8.1] - 2022-01-10 +* Fix bug in PAE importer for durations and for key signatures + ## [3.8.0] - 2021-12-22 * Support for figured-bass extenders on `f` without `@tstamp` or `@startid` * Improved page-based MEI output with validation with a customized MEI Schema diff --git a/Verovio.podspec b/Verovio.podspec index e58b3c215aa..3ff367e7679 100644 --- a/Verovio.podspec +++ b/Verovio.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Verovio' - s.version = '3.8.0' + s.version = '3.8.1' s.license = { :type => 'LGPL' } s.homepage = 'https://www.verovio.org/index.xhtml' s.authors = { 'Contributors List' => 'https://github.com/rism-digital/verovio/graphs/contributors' } diff --git a/bindings/java/pom.xml b/bindings/java/pom.xml index d9853fdf035..30d84f3500c 100644 --- a/bindings/java/pom.xml +++ b/bindings/java/pom.xml @@ -4,7 +4,7 @@ org.rism.verovio VerovioToolkit - 3.8.0 + 3.8.1 jar VerovioToolkit diff --git a/codemeta.json b/codemeta.json index cd2b60481e2..59231d6753c 100644 --- a/codemeta.json +++ b/codemeta.json @@ -4,8 +4,8 @@ "identifier": "Verovio", "name": "Verovio", "description": "Verovio is a fast, portable and lightweight open-source library for engraving Music Encoding Initiative (MEI) music scores into SVG.", - "softwareVersion": "3.8.0", - "datePublished": "2021-12-22", + "softwareVersion": "3.8.1", + "datePublished": "2022-01-10", "license": "https://www.gnu.org/licenses/lgpl-3.0", "programmingLanguage": [{ "@type": "ComputerLanguage", diff --git a/emscripten/npm/package.json b/emscripten/npm/package.json index 58a4370f5e1..e2d128472c7 100644 --- a/emscripten/npm/package.json +++ b/emscripten/npm/package.json @@ -1,6 +1,6 @@ { "name": "verovio", - "version": "3.8.0", + "version": "3.8.1", "description": "This is the stable version of the verovio package", "main": "index.js", "keywords": [ diff --git a/include/vrv/vrvdef.h b/include/vrv/vrvdef.h index 8d32cb5c7ec..9b640e495a7 100644 --- a/include/vrv/vrvdef.h +++ b/include/vrv/vrvdef.h @@ -37,7 +37,7 @@ namespace vrv { #define VERSION_MAJOR 3 #define VERSION_MINOR 8 -#define VERSION_REVISION 0 +#define VERSION_REVISION 1 // Adds "-dev" in the version number - should be set to false for releases #define VERSION_DEV false