diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aea9de91d..48d7bbe644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## 7.4.4 (git master) +## 7.4.5 (git master) + +## 7.4.4 (06/06/2018) * Improve handling of calendar exceptions in MPX files. * Improve handling of MPP files with large numbers of null tasks. * Improve robustness when reading timephased data. diff --git a/build.xml b/build.xml index fed16f0315..5a9389b9dd 100644 --- a/build.xml +++ b/build.xml @@ -9,7 +9,7 @@ - + diff --git a/maven/pom.xml b/maven/pom.xml index 75ca41eaf3..f08c4088b3 100644 --- a/maven/pom.xml +++ b/maven/pom.xml @@ -8,7 +8,7 @@ mpxj - 7.4.3 + 7.4.4 MPXJ http://mpxj.org diff --git a/maven/src/changes/changes.xml b/maven/src/changes/changes.xml index dac4117de8..820a938e33 100644 --- a/maven/src/changes/changes.xml +++ b/maven/src/changes/changes.xml @@ -5,7 +5,9 @@ Jon Iles - + + + Improve handling of calendar exceptions in MPX files. Improve handling of MPP files with large numbers of null tasks. Improve robustness when reading timephased data. diff --git a/src.net/MpxjConvert/Properties/AssemblyInfo.cs b/src.net/MpxjConvert/Properties/AssemblyInfo.cs index 3701f32ed7..0f75a942de 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.3.0")] -[assembly: AssemblyVersion("7.4.3.0")] -[assembly: AssemblyFileVersion("7.4.3.0")] +// [assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyFileVersion("7.4.4.0")] diff --git a/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs b/src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs index 7a8286c5b5..ca4edc74af 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.3.0")] -[assembly: AssemblyVersion("7.4.3.0")] -[assembly: AssemblyFileVersion("7.4.3.0")] +// [assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyFileVersion("7.4.4.0")] diff --git a/src.net/MpxjQuery/Properties/AssemblyInfo.cs b/src.net/MpxjQuery/Properties/AssemblyInfo.cs index fba8a7ef10..ce79d9f5f4 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.3.0")] -[assembly: AssemblyVersion("7.4.3.0")] -[assembly: AssemblyFileVersion("7.4.3.0")] +// [assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyFileVersion("7.4.4.0")] diff --git a/src.net/MpxjTest/Properties/AssemblyInfo.cs b/src.net/MpxjTest/Properties/AssemblyInfo.cs index d957cb918e..cd2de4fa56 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.3.0")] -[assembly: AssemblyVersion("7.4.3.0")] -[assembly: AssemblyFileVersion("7.4.3.0")] +// [assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyFileVersion("7.4.4.0")] diff --git a/src.net/MpxjUtilities/Properties/AssemblyInfo.cs b/src.net/MpxjUtilities/Properties/AssemblyInfo.cs index 19ffcbcae1..53b7ea9d2d 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.3.0")] -[assembly: AssemblyVersion("7.4.3.0")] -[assembly: AssemblyFileVersion("7.4.3.0")] +// [assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyVersion("7.4.4.0")] +[assembly: AssemblyFileVersion("7.4.4.0")] diff --git a/src.ruby/mpxj/lib/mpxj/version.rb b/src.ruby/mpxj/lib/mpxj/version.rb index 1dbffbc877..c867c12aab 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.3" + VERSION = "7.4.4" end