diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ceebac60..a47532af9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## 7.4.2 (git master) +## 7.4.3 (git master) + +## 7.4.2 (30/04/2018) +* Gracefully handle malformed duration values in MSPDI files. +* Gracefully handle unexpected calendar exception data structure in certain MPP files. +* Improve handling of certain unusual MPP12 files. +* More work to gracefully handle POI issue 61677, allowing affected MPP files to be read successfully. ## 7.4.1 (16/04/2018) * Add methods to list projects available in P3 and SureTrak database directories. diff --git a/build.xml b/build.xml index 1204db77b9..45312c6037 100644 --- a/build.xml +++ b/build.xml @@ -9,7 +9,7 @@ - + diff --git a/maven/pom.xml b/maven/pom.xml index e540092076..d1c4a87241 100644 --- a/maven/pom.xml +++ b/maven/pom.xml @@ -8,7 +8,7 @@ mpxj - 7.4.1 + 7.4.2 MPXJ http://mpxj.org diff --git a/maven/src/changes/changes.xml b/maven/src/changes/changes.xml index 274918913d..f996bd030c 100644 --- a/maven/src/changes/changes.xml +++ b/maven/src/changes/changes.xml @@ -5,7 +5,9 @@ Jon Iles - + + + Gracefully handle malformed duration values in MSPDI files. Gracefully handle unexpected calendar exception data structure in certain MPP files. Improve handling of certain unusual MPP12 files. diff --git a/src.net/MpxjConvert/Properties/AssemblyInfo.cs b/src.net/MpxjConvert/Properties/AssemblyInfo.cs index 3bdd3f0c18..65d12078ec 100644 --- a/src.net/MpxjConvert/Properties/AssemblyInfo.cs +++ b/src.net/MpxjConvert/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyFileVersion("7.4.1.0")] +// [assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyFileVersion("7.4.2.0")] diff --git a/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs b/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs index d113e2da12..0feffc0844 100644 --- a/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs +++ b/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyFileVersion("7.4.1.0")] +// [assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyFileVersion("7.4.2.0")] diff --git a/src.net/MpxjQuery/Properties/AssemblyInfo.cs b/src.net/MpxjQuery/Properties/AssemblyInfo.cs index 0dba259bcf..8a5b367b90 100644 --- a/src.net/MpxjQuery/Properties/AssemblyInfo.cs +++ b/src.net/MpxjQuery/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyFileVersion("7.4.1.0")] +// [assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyFileVersion("7.4.2.0")] diff --git a/src.net/MpxjTest/Properties/AssemblyInfo.cs b/src.net/MpxjTest/Properties/AssemblyInfo.cs index 75db0b796c..69ed230eab 100644 --- a/src.net/MpxjTest/Properties/AssemblyInfo.cs +++ b/src.net/MpxjTest/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyFileVersion("7.4.1.0")] +// [assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyFileVersion("7.4.2.0")] diff --git a/src.net/MpxjUtilities/Properties/AssemblyInfo.cs b/src.net/MpxjUtilities/Properties/AssemblyInfo.cs index 8e4aee3d4b..6b59e59af6 100644 --- a/src.net/MpxjUtilities/Properties/AssemblyInfo.cs +++ b/src.net/MpxjUtilities/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -// [assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyVersion("7.4.1.0")] -[assembly: AssemblyFileVersion("7.4.1.0")] +// [assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyVersion("7.4.2.0")] +[assembly: AssemblyFileVersion("7.4.2.0")] diff --git a/src.ruby/mpxj/lib/mpxj/version.rb b/src.ruby/mpxj/lib/mpxj/version.rb index bfdcafc709..2b0c513758 100644 --- a/src.ruby/mpxj/lib/mpxj/version.rb +++ b/src.ruby/mpxj/lib/mpxj/version.rb @@ -1,5 +1,5 @@ # MPXJ gem module module MPXJ # MPXJ gem version number - VERSION = "7.4.1" + VERSION = "7.4.2" end