Skip to content

Commit

Permalink
Version number set to 2.3.2 in preparation of release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingo Berg committed Jun 16, 2020
1 parent 0af6791 commit c87a005
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ project(muParserProject)
# Bump versions on release
set(MUPARSER_VERSION_MAJOR 2)
set(MUPARSER_VERSION_MINOR 3)
set(MUPARSER_VERSION_PATCH 1)
set(MUPARSER_VERSION_PATCH 2)
set(MUPARSER_VERSION ${MUPARSER_VERSION_MAJOR}.${MUPARSER_VERSION_MINOR}.${MUPARSER_VERSION_PATCH})

# Build options
Expand Down
7 changes: 6 additions & 1 deletion Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
History:
--------

Rev 2.3.1: 16.06.2020
Rev 2.3.2: 17.06.2020
---------------------
API-Changes:
* removed final keyword from Parser class (added in 2.3.0) as this was breaking existing Applications
Expand All @@ -22,6 +22,11 @@ Rev 2.3.1: 16.06.2020
* Prevented multiple access violations for malformed expressions with if then else and functions taking multiple arguments like "sum(0?1,2,3,4:5)"
* https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=23410

Rev 2.3.1:
----------
Only prerelease with the version number exist Version 2.3.2 replaced it.


Rev 2.3.0: 13.06.2020
---------------------
Changes:
Expand Down
4 changes: 2 additions & 2 deletions include/muParserDef.h
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ namespace mu

static const int MaxLenExpression = 5000;
static const int MaxLenIdentifier = 100;
static const string_type ParserVersion = string_type(_T("2.3.1"));
static const string_type ParserVersionDate = string_type(_T("20200616"));
static const string_type ParserVersion = string_type(_T("2.3.2"));
static const string_type ParserVersionDate = string_type(_T("20200617"));
} // end of namespace

#if defined(_MSC_VER)
Expand Down

0 comments on commit c87a005

Please sign in to comment.