File tree 11 files changed +27
-21
lines changed
MpxjCreate/MpxjCreate/Properties
11 files changed +27
-21
lines changed Original file line number Diff line number Diff line change 7
7
/lib.net /junit.dll
8
8
/lib.net /mpxj * .dll
9
9
/lib.net /poi * .dll
10
+ /lib.net /commons-collections * .dll
10
11
/lib.net /rtfparserkit * .dll
11
12
/lib.net /sqlite-jdbc * .dll
12
13
/lib.net /MpxjUtilities.dll
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 5.7.2 (Git master)
4
- * Updated to use POI 3.16.
3
+ ## 5.8.0 (Git master)
4
+ * Updated to use POI 3.16 (note new dependency on Apache Commons Collections required by POI) .
5
5
* Improve support for estimated durations in Merlin files.
6
+ * Read task notes from Asta files.
7
+ * Improve support for reading resource rates from Phoenix files.
8
+ * Add "file application" and "file type" to project properties to determine source of schedule data.
6
9
7
10
## 5.7.1 (22/03/2017)
8
11
* Improve support for Phoenix Project Manager XML files.
Original file line number Diff line number Diff line change 9
9
<target name =" init-props" description =" Initialize properties" >
10
10
<tstamp />
11
11
12
- <property name =" current.version" value =" 5.7.1 " />
12
+ <property name =" current.version" value =" 5.8.0 " />
13
13
<property name =" ikvm.dir" value =" ${ basedir } /../ikvm-8.0.5449.1" />
14
14
<property name =" nuget.dir" value =" ${ basedir } /../nuget" />
15
15
<property name =" ruby.dir" value =" C:/Ruby21" />
Original file line number Diff line number Diff line change 8
8
<artifactId >mpxj</artifactId >
9
9
10
10
<!-- Note - this is automatically updated by the ant build ... don't remove the MPXJ comment! -->
11
- <!-- MPXJ --> <version >5.7.1 </version >
11
+ <!-- MPXJ --> <version >5.8.0 </version >
12
12
13
13
<name >MPXJ</name >
14
14
<url >http://mpxj.org</url >
Original file line number Diff line number Diff line change 5
5
<author email =" jon.iles@bcs.org.uk" >Jon Iles</author >
6
6
</properties >
7
7
<body >
8
- <release date =" Git master" version =" 5.8.0" >
8
+ <release date =" Git master" version =" 5.8.1" >
9
+ </release >
10
+ <release date =" 21/04/2017" version =" 5.8.0" >
9
11
<action dev =" joniles" type =" update" >Updated to use POI 3.16 (note new dependency on Apache Commons Collections required by POI).</action >
10
12
<action dev =" joniles" type =" update" >Improve support for estimated durations in Merlin files.</action >
11
13
<action dev =" joniles" type =" update" >Read task notes from Asta files.</action >
Original file line number Diff line number Diff line change 31
31
//
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
- // [assembly: AssemblyVersion("5.7.1 .0")]
35
- [ assembly: AssemblyVersion ( "5.7.1 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "5.7.1 .0" ) ]
34
+ // [assembly: AssemblyVersion("5.8.0 .0")]
35
+ [ assembly: AssemblyVersion ( "5.8.0 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "5.8.0 .0" ) ]
Original file line number Diff line number Diff line change 31
31
//
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
- // [assembly: AssemblyVersion("5.7.1 .0")]
35
- [ assembly: AssemblyVersion ( "5.7.1 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "5.7.1 .0" ) ]
34
+ // [assembly: AssemblyVersion("5.8.0 .0")]
35
+ [ assembly: AssemblyVersion ( "5.8.0 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "5.8.0 .0" ) ]
Original file line number Diff line number Diff line change 31
31
//
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
- // [assembly: AssemblyVersion("5.7.1 .0")]
35
- [ assembly: AssemblyVersion ( "5.7.1 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "5.7.1 .0" ) ]
34
+ // [assembly: AssemblyVersion("5.8.0 .0")]
35
+ [ assembly: AssemblyVersion ( "5.8.0 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "5.8.0 .0" ) ]
Original file line number Diff line number Diff line change 32
32
//
33
33
// You can specify all the values or you can default the Build and Revision Numbers
34
34
// by using the '*' as shown below:
35
- // [assembly: AssemblyVersion("5.7.1 .0")]
36
- [ assembly: AssemblyVersion ( "5.7.1 .0" ) ]
37
- [ assembly: AssemblyFileVersion ( "5.7.1 .0" ) ]
35
+ // [assembly: AssemblyVersion("5.8.0 .0")]
36
+ [ assembly: AssemblyVersion ( "5.8.0 .0" ) ]
37
+ [ assembly: AssemblyFileVersion ( "5.8.0 .0" ) ]
Original file line number Diff line number Diff line change 32
32
//
33
33
// You can specify all the values or you can default the Build and Revision Numbers
34
34
// by using the '*' as shown below:
35
- // [assembly: AssemblyVersion("5.7.1 .0")]
36
- [ assembly: AssemblyVersion ( "5.7.1 .0" ) ]
37
- [ assembly: AssemblyFileVersion ( "5.7.1 .0" ) ]
35
+ // [assembly: AssemblyVersion("5.8.0 .0")]
36
+ [ assembly: AssemblyVersion ( "5.8.0 .0" ) ]
37
+ [ assembly: AssemblyFileVersion ( "5.8.0 .0" ) ]
Original file line number Diff line number Diff line change 1
1
# MPXJ gem module
2
2
module MPXJ
3
3
# MPXJ gem version number
4
- VERSION = "5.7.1 "
4
+ VERSION = "5.8.0 "
5
5
end
You can’t perform that action at this time.
0 commit comments