Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Nov 20, 2017
1 parent fa58786 commit b7b94b8
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 20 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

## 7.0.1 (git master)
## 7.0.2 (git master)

## 7.0.1 (20/11/2017)
* Improve robustness when reading MPP files when using certain 64 bit Java runtimes.
* Populate the project's comments property when reading an MSPDI file.
* Ensure that tasks are not discarded when reading PP files from older Asta versions.
* Fixed [Issue 319](https://sourceforge.net/p/mpxj/bugs/319): Wrong date ranges for split tasks
* Fixed [Issue 222](https://sourceforge.net/p/mpxj/bugs/222): getDefaultTaskType() not returning correct default task type
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<target name="init-props" description="Initialize properties">
<tstamp />

<property name="current.version" value="7.0.0" />
<property name="current.version" value="7.0.1" />
<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
Original file line number Diff line number Diff line change
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.0.0</version>
<!-- MPXJ --><version>7.0.1</version>

<name>MPXJ</name>
<url>http://mpxj.org</url>
Expand Down
4 changes: 3 additions & 1 deletion maven/src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<author email="jon.iles@bcs.org.uk">Jon Iles</author>
</properties>
<body>
<release date="git master" version="7.0.1">
<release date="git master" version="7.0.2">
</release>
<release date="20/11/2017" version="7.0.1">
<action dev="joniles" type="update">Improve robustness when reading MPP files when using certain 64 bit Java runtimes.</action>
<action dev="joniles" type="update">Populate the project's comments property when reading an MSPDI file.</action>
<action dev="joniles" type="fix">Ensure that tasks are not discarded when reading PP files from older Asta versions.</action>
Expand Down
6 changes: 3 additions & 3 deletions src.net/MpxjConvert/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
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.0.0.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
// [assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjCreate/MpxjCreate/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
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.0.0.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
// [assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjQuery/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
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.0.0.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
// [assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
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.0.0.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
// [assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
6 changes: 3 additions & 3 deletions src.net/MpxjUtilities/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
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.0.0.0")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
// [assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyVersion("7.0.1.0")]
[assembly: AssemblyFileVersion("7.0.1.0")]
2 changes: 1 addition & 1 deletion src.ruby/mpxj/lib/mpxj/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MPXJ gem module
module MPXJ
# MPXJ gem version number
VERSION = "7.0.0"
VERSION = "7.0.1"
end

0 comments on commit b7b94b8

Please sign in to comment.