Skip to content

Commit

Permalink
version moved to 3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
dfober committed Jun 20, 2022
1 parent d953bc6 commit 351c5b9
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
MusicXML Library


----------------------------------------------------------------------------------------------------
Version 3.22
- fix install settings

----------------------------------------------------------------------------------------------------
Version 3.21
- xml2guido v.3.2:
Expand Down
2 changes: 1 addition & 1 deletion build/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif()
# versions management
set (XMLVERSION 3.1)

set (VERSION 3.2.1)
set (VERSION 3.2.2)
macro (get_major_minor_patch version)
string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\1" VERSION_MAJOR ${version} )
string( REGEX REPLACE "([0-9]*)\\.([0-9]*)\\.([0-9]*)" "\\2" VERSION_MINOR ${version} )
Expand Down
2 changes: 1 addition & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LIBDIR ?= libdir
IOSDIR ?= iosdir
MAKEFILE ?= Makefile

VERSION = 3.21
VERSION = 3.22

CMAKEOPT ?=
TOOLS := xml2midi xmlread xml2guido xmlversion
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = LibMusicXML
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 3.21
PROJECT_NUMBER = 3.22

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
2 changes: 1 addition & 1 deletion javascript/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grame/libmusicxml",
"version": "3.21.0",
"version": "3.22.0",
"description": "A library to support the MusicXML format.",
"main": "libmusicxml.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion packages/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# current dtds and schema version
CURRENT = 3.1

VERSION := 3.21
VERSION := 3.22
TAG :=-D tomorrow
ROOTDIR := ..
SRCDIR := $(ROOTDIR)/src
Expand Down
4 changes: 2 additions & 2 deletions src/elements/versions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
namespace MusicXML2
{
//______________________________________________________________________________
float versions::libVersion() { return 3.21f; }
const char* versions::libVersionStr() { return "3.21"; }
float versions::libVersion() { return 3.22f; }
const char* versions::libVersionStr() { return "3.22"; }

float versions::xml2guidoVersion() { return 3.2f; }
const char* versions::xml2guidoVersionStr() { return "3.2"; }
Expand Down
8 changes: 4 additions & 4 deletions win32/libmusicxml/libmusicxml.rc
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,2,1,0
PRODUCTVERSION 3,2,1,0
FILEVERSION 3,2,2,0
PRODUCTVERSION 3,2,2,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Grame"
VALUE "FileDescription", "libmusicxml library"
VALUE "FileVersion", "3, 2, 1, 0"
VALUE "FileVersion", "3, 2, 2, 0"
VALUE "InternalName", "libmusicxml"
VALUE "LegalCopyright", "Copyright (C) GRAME 2008-2022"
VALUE "OriginalFilename", "libmusicxml3.dll"
VALUE "ProductName", " libmusicxml"
VALUE "ProductVersion", "3, 2, 1, 0"
VALUE "ProductVersion", "3, 2, 2, 0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 351c5b9

Please sign in to comment.