Skip to content

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed May 25, 2018
1 parent 5dde66a commit 155950b
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 21 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,12 @@
# Changelog

## 7.4.3 (git master)
* Store the Primavera Project ID as Unique ID in the project properties.
## 7.4.4 (git master)

## 7.4.3 (25/05/2018)
* Add support for reading the resource "generic" attribute from MPP files.
* Add a Unique ID attribute to the Relation class and populate for schedule types which support this concept.
* Store the Primavera Project ID as Unique ID in the project properties.
* Update MerlinReader to ensure support for Merlin Project Pro 5.

## 7.4.2 (30/04/2018)
* Gracefully handle malformed duration values in MSPDI files.
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -9,7 +9,7 @@
<target name="init-props" description="Initialize properties">
<tstamp />

<property name="current.version" value="7.4.2" />
<property name="current.version" value="7.4.3" />
<property name="ikvm.dir" value="${basedir}/../ikvm-8.0.5449.1" />
<property name="nuget.dir" value="${basedir}/../nuget" />
<property name="ruby.dir" value="C:/Ruby21"/>
Expand Down
2 changes: 1 addition & 1 deletion maven/pom.xml
Expand Up @@ -8,7 +8,7 @@
<artifactId>mpxj</artifactId>

<!-- Note - this is automatically updated by the ant build ... don't remove the MPXJ comment! -->
<!-- MPXJ --><version>7.4.2</version>
<!-- MPXJ --><version>7.4.3</version>

<name>MPXJ</name>
<url>http://mpxj.org</url>
Expand Down
4 changes: 3 additions & 1 deletion maven/src/changes/changes.xml
Expand Up @@ -5,7 +5,9 @@
<author email="jon.iles@bcs.org.uk">Jon Iles</author>
</properties>
<body>
<release date="git master" version="7.4.3">
<release date="git master" version="7.4.4">
</release>
<release date="25/05/2018" version="7.4.3">
<action dev="joniles" type="add">Add support for reading the resource "generic" attribute from MPP files.</action>
<action dev="joniles" type="add">Add a Unique ID attribute to the Relation class and populate for schedule types which support this concept.</action>
<action dev="joniles" type="update">Store the Primavera Project ID as Unique ID in the project properties.</action>
Expand Down
6 changes: 3 additions & 3 deletions src.net/MpxjConvert/Properties/AssemblyInfo.cs
Expand Up @@ -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.2.0")]
[assembly: AssemblyVersion("7.4.2.0")]
[assembly: AssemblyFileVersion("7.4.2.0")]
// [assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyFileVersion("7.4.3.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs
Expand Up @@ -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.2.0")]
[assembly: AssemblyVersion("7.4.2.0")]
[assembly: AssemblyFileVersion("7.4.2.0")]
// [assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyFileVersion("7.4.3.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjQuery/Properties/AssemblyInfo.cs
Expand Up @@ -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.2.0")]
[assembly: AssemblyVersion("7.4.2.0")]
[assembly: AssemblyFileVersion("7.4.2.0")]
// [assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyFileVersion("7.4.3.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjTest/Properties/AssemblyInfo.cs
Expand Up @@ -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.2.0")]
[assembly: AssemblyVersion("7.4.2.0")]
[assembly: AssemblyFileVersion("7.4.2.0")]
// [assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyFileVersion("7.4.3.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjUtilities/Properties/AssemblyInfo.cs
Expand Up @@ -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.2.0")]
[assembly: AssemblyVersion("7.4.2.0")]
[assembly: AssemblyFileVersion("7.4.2.0")]
// [assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyVersion("7.4.3.0")]
[assembly: AssemblyFileVersion("7.4.3.0")]
2 changes: 1 addition & 1 deletion src.ruby/mpxj/lib/mpxj/version.rb
@@ -1,5 +1,5 @@
# MPXJ gem module
module MPXJ
# MPXJ gem version number
VERSION = "7.4.2"
VERSION = "7.4.3"
end

0 comments on commit 155950b

Please sign in to comment.