diff --git a/CHANGELOG.md b/CHANGELOG.md index 67689a9c6e..c94c5df2bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Changelog -## 7.0.3 (git master) +## 7.0.4 (git master) + +## 7.0.3 (21/12/2017) * Use the Windows-1252 character set as the default when reading XER files. +* Gracefully handle POI issue 61677 to allow MPP affected MPP files to be read successfully. +* Handle recurring calendar exceptions read from MSPDI files without an occurrence count. +* Improve robustness of FastTrack schedule reader. +* Avoid reading empty calendar exceptions from MPX files. ## 7.0.2 (20/11/2017) * Further improvements to task pruning for Asta PP files. diff --git a/build.xml b/build.xml index 5a8c604661..94ad9a9861 100644 --- a/build.xml +++ b/build.xml @@ -9,7 +9,7 @@ - + diff --git a/maven/pom.xml b/maven/pom.xml index 154e1be55d..7a6689f921 100644 --- a/maven/pom.xml +++ b/maven/pom.xml @@ -8,7 +8,7 @@ mpxj - 7.0.2 + 7.0.3 MPXJ http://mpxj.org diff --git a/maven/src/changes/changes.xml b/maven/src/changes/changes.xml index 2f9c6b9cac..35e50c82dd 100644 --- a/maven/src/changes/changes.xml +++ b/maven/src/changes/changes.xml @@ -5,7 +5,9 @@ Jon Iles - + + + Use the Windows-1252 character set as the default when reading XER files. Gracefully handle POI issue 61677 to allow MPP affected MPP files to be read successfully. Handle recurring calendar exceptions read from MSPDI files without an occurrence count. diff --git a/src.net/MpxjConvert/Properties/AssemblyInfo.cs b/src.net/MpxjConvert/Properties/AssemblyInfo.cs index 897f62aa2e..c42bd4b4e9 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.0.2.0")] -[assembly: AssemblyVersion("7.0.2.0")] -[assembly: AssemblyFileVersion("7.0.2.0")] +// [assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyFileVersion("7.0.3.0")] diff --git a/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs b/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs index 6c39b3e64a..3c0acedf39 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.0.2.0")] -[assembly: AssemblyVersion("7.0.2.0")] -[assembly: AssemblyFileVersion("7.0.2.0")] +// [assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyFileVersion("7.0.3.0")] diff --git a/src.net/MpxjQuery/Properties/AssemblyInfo.cs b/src.net/MpxjQuery/Properties/AssemblyInfo.cs index fd986ab182..d11ead7d80 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.0.2.0")] -[assembly: AssemblyVersion("7.0.2.0")] -[assembly: AssemblyFileVersion("7.0.2.0")] +// [assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyFileVersion("7.0.3.0")] diff --git a/src.net/MpxjTest/Properties/AssemblyInfo.cs b/src.net/MpxjTest/Properties/AssemblyInfo.cs index 0818fbe2b8..ca3d4e4d17 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.0.2.0")] -[assembly: AssemblyVersion("7.0.2.0")] -[assembly: AssemblyFileVersion("7.0.2.0")] +// [assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyFileVersion("7.0.3.0")] diff --git a/src.net/MpxjUtilities/Properties/AssemblyInfo.cs b/src.net/MpxjUtilities/Properties/AssemblyInfo.cs index 0d8bdfed2a..5ae1721857 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.0.2.0")] -[assembly: AssemblyVersion("7.0.2.0")] -[assembly: AssemblyFileVersion("7.0.2.0")] +// [assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyVersion("7.0.3.0")] +[assembly: AssemblyFileVersion("7.0.3.0")] diff --git a/src.ruby/mpxj/lib/mpxj/version.rb b/src.ruby/mpxj/lib/mpxj/version.rb index 8de963cad4..21d420349e 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.0.2" + VERSION = "7.0.3" end