Skip to content

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Jan 3, 2018
1 parent 034818b commit c44a1af
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 20 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,12 @@
# Changelog

## 7.0.4 (git master)
## 7.1.1 (git master)

## 7.1.0 (03/01/2018)
* Added support for reading GanttProject files.
* Ensure that calendar exception dates are read correctly from XER files and P6 databases regardless of the user's timezone.
* Read working day calendar exceptions from XER files and P6 database.
* Mark some ProjectFile methods as deprecated.

## 7.0.3 (21/12/2017)
* Use the Windows-1252 character set as the default when reading XER 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.0.3" />
<property name="current.version" value="7.1.0" />
<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.0.3</version>
<!-- MPXJ --><version>7.1.0</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.1.0">
<release date="git master" version="7.1.1">
</release>
<release date="03/01/2018" version="7.1.0">
<action dev="joniles" type="add">Added support for reading GanttProject files.</action>
<action dev="joniles" type="fix">Ensure that calendar exception dates are read correctly from XER files and P6 databases regardless of the user's timezone.</action>
<action dev="joniles" type="update">Read working day calendar exceptions from XER files and P6 database.</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.0.3.0")]
[assembly: AssemblyVersion("7.0.3.0")]
[assembly: AssemblyFileVersion("7.0.3.0")]
// [assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyFileVersion("7.1.0.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.0.3.0")]
[assembly: AssemblyVersion("7.0.3.0")]
[assembly: AssemblyFileVersion("7.0.3.0")]
// [assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyFileVersion("7.1.0.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.0.3.0")]
[assembly: AssemblyVersion("7.0.3.0")]
[assembly: AssemblyFileVersion("7.0.3.0")]
// [assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyFileVersion("7.1.0.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.0.3.0")]
[assembly: AssemblyVersion("7.0.3.0")]
[assembly: AssemblyFileVersion("7.0.3.0")]
// [assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyFileVersion("7.1.0.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.0.3.0")]
[assembly: AssemblyVersion("7.0.3.0")]
[assembly: AssemblyFileVersion("7.0.3.0")]
// [assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyFileVersion("7.1.0.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.0.3"
VERSION = "7.1.0"
end

0 comments on commit c44a1af

Please sign in to comment.