diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5e5a935eeef..92c5b00aa9a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,9 @@
# Changelog
-## [unreleased]
+## [3.13.1] - 2022-11-28
+* Fix text music font always falling back to Leipzig
+* Fix missing JSON handling for some methods in the Python binding
+* Fix text size percent not being reset in sibling text elements
## [3.13.0] - 2022-11-23
* Refactoring of the JSON parameters and returned values as dictionaries for the Python binding
diff --git a/Verovio.podspec b/Verovio.podspec
index 9703d4bf4df..ec08ee59f00 100644
--- a/Verovio.podspec
+++ b/Verovio.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Verovio'
- s.version = '3.13.0'
+ s.version = '3.13.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 e232c0c7c35..83d319794a3 100644
--- a/bindings/java/pom.xml
+++ b/bindings/java/pom.xml
@@ -4,7 +4,7 @@
org.rism.verovio
VerovioToolkit
- 3.13.0
+ 3.13.1
jar
VerovioToolkit
diff --git a/codemeta.json b/codemeta.json
index 7685add2132..e2b9af09252 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.13.0",
- "datePublished": "2022-11-23",
+ "softwareVersion": "3.13.1",
+ "datePublished": "2022-11-28",
"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 05b60643da8..2c7103b1963 100644
--- a/emscripten/npm/package.json
+++ b/emscripten/npm/package.json
@@ -1,6 +1,6 @@
{
"name": "verovio",
- "version": "3.13.0",
+ "version": "3.13.1",
"description": "This is the stable version of the verovio package",
"main": "dist/verovio-toolkit-wasm.js",
"exports": {
diff --git a/include/vrv/vrvdef.h b/include/vrv/vrvdef.h
index 64eb622606a..a3ad36a01e8 100644
--- a/include/vrv/vrvdef.h
+++ b/include/vrv/vrvdef.h
@@ -37,8 +37,8 @@ namespace vrv {
//----------------------------------------------------------------------------
#define VERSION_MAJOR 3
-#define VERSION_MINOR 14
-#define VERSION_REVISION 0
+#define VERSION_MINOR 13
+#define VERSION_REVISION 1
// Adds "-dev" in the version number - should be set to false for releases
#define VERSION_DEV false