diff --git a/CHANGELOG.md b/CHANGELOG.md
index a40484c6bb9..d0bfa902158 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,14 @@
# Changelog
-## [unreleased]
+## [4.3.1] - 2024-09-10
+* Fix JS builds (JavaScript release only)
+
+## [4.3.0] - 2024-09-10
* Support (initial) for Volpiano input
* Support for neumatic notation oriscus and quilisma
* Support for neume layout without facsimile
* Support for numeral harmonics in MusicXML importer (@eNote-GmBH)
+* Improved logging
## [4.2.1] - 2024-05-07
* Fix GitHub actions (Python release only)
@@ -13,7 +17,6 @@
* Support for `fTrem@unitdur` (@eNote-GmbH)
* Upgrade to C++20
* Update of the Midifile library
-* Improved logging
* Fix lyric position in MIDI output
* Fix string formatting output with some locale configurations (@ammatwain)
diff --git a/Verovio.podspec b/Verovio.podspec
index a9ec8abbf82..08b2c403f09 100644
--- a/Verovio.podspec
+++ b/Verovio.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Verovio'
- s.version = '4.3.0-dev'
+ s.version = '4.4.0-dev'
s.license = { :type => 'LGPL', :file => 'COPYING' }
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 12e049ef9e8..be8eaea69c8 100644
--- a/bindings/java/pom.xml
+++ b/bindings/java/pom.xml
@@ -4,7 +4,7 @@
org.rism.verovio
VerovioToolkit
- 4.3.0-dev
+ 4.4.0-dev
jar
VerovioToolkit
diff --git a/bindings/python/.pypi-version b/bindings/python/.pypi-version
index 76d263aca3f..a30a8afba0d 100644
--- a/bindings/python/.pypi-version
+++ b/bindings/python/.pypi-version
@@ -1,3 +1,3 @@
# dummy file used by setup.py for counting revisions when publishing to test.pypi
# counting can be reset by making a change to this file
-4.3.0
+4.4.0
diff --git a/codemeta.json b/codemeta.json
index 6461b01b695..7c2b6682510 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": "4.3.0-dev",
- "datePublished": "2024-05-07",
+ "softwareVersion": "4.4.0-dev",
+ "datePublished": "2024-09-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 ee8f09137b4..1c0d635e5d0 100644
--- a/emscripten/npm/package.json
+++ b/emscripten/npm/package.json
@@ -1,6 +1,6 @@
{
"name": "verovio",
- "version": "4.3.0-alpha",
+ "version": "4.4.0-alpha",
"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 a5c6019e334..13b459b0da2 100644
--- a/include/vrv/vrvdef.h
+++ b/include/vrv/vrvdef.h
@@ -39,7 +39,7 @@ namespace vrv {
//----------------------------------------------------------------------------
#define VERSION_MAJOR 4
-#define VERSION_MINOR 3
+#define VERSION_MINOR 4
#define VERSION_REVISION 0
// Adds "-dev" in the version number - should be set to false for releases
#define VERSION_DEV true