Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Aug 22, 2024
1 parent 07ac4b8 commit f260698
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 27 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## 13.2.3 (unreleased)
## 13.3.1 (unreleased)

## 13.3.0 (2024-08-22)
* When reading multiple Primavera schedules from the same source, MPXJ now ensures that instances of activity code definitions, user defined field definitions, locations, units of measure, expense categories, cost accounts, work contours, and notes topics are shared across projects. This will allow you to, for example, filter tasks from multiple projects using a `Location` instance. Previously each project had its own independent instances for each of these types, which could not be used across multiple projects.
* When reading Powerproject schedules, ensure that the Activity ID attribute for WBS entries is populated using Powerproject's Unique Task ID attribute.
* Add support for reading timephased planned work from MPP files for manually scheduled tasks (Contributed by Fabian Schmidt).

## 13.2.2 (2024-08-14)
* Add missing constructors to `TimephasedCost` and `TimephasedWork` in MPXJ.Net.
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<property environment="env"/>

<!-- Build Configuration -->
<property name="current.version" value="13.2.2" />
<property name="current.version" value="13.3.0" />
<property name="current.version.classifier" value="" />
<!-- Environment Configuration-->
<property name="maven.cmd" value="mvn.cmd"/>
Expand Down
2 changes: 1 addition & 1 deletion pom.tests.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.mpxj</groupId>
<artifactId>mpxj-tests</artifactId>
<version>13.2.2</version>
<version>13.3.0</version>
<name>MPXJ Tests</name>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.mpxj</groupId>
<artifactId>mpxj</artifactId>
<version>13.2.2</version>
<version>13.3.0</version>
<name>MPXJ</name>
<url>http://mpxj.org</url>

Expand Down
6 changes: 3 additions & 3 deletions src.net/samples/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("13.2.2.0")]
[assembly: AssemblyVersion("13.2.2.0")]
[assembly: AssemblyFileVersion("13.2.2.0")]
// [assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyFileVersion("13.3.0.0")]
6 changes: 3 additions & 3 deletions src.net/samples/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("13.2.2.0")]
[assembly: AssemblyVersion("13.2.2.0")]
[assembly: AssemblyFileVersion("13.2.2.0")]
// [assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyFileVersion("13.3.0.0")]
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("13.2.2.0")]
[assembly: AssemblyVersion("13.2.2.0")]
[assembly: AssemblyFileVersion("13.2.2.0")]
// [assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyFileVersion("13.3.0.0")]
6 changes: 3 additions & 3 deletions src.net/samples/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("13.2.2.0")]
[assembly: AssemblyVersion("13.2.2.0")]
[assembly: AssemblyFileVersion("13.2.2.0")]
// [assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyFileVersion("13.3.0.0")]
6 changes: 3 additions & 3 deletions src.net/samples/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("13.2.2.0")]
[assembly: AssemblyVersion("13.2.2.0")]
[assembly: AssemblyFileVersion("13.2.2.0")]
// [assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyFileVersion("13.3.0.0")]
6 changes: 3 additions & 3 deletions src.net/utilities/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("13.2.2.0")]
[assembly: AssemblyVersion("13.2.2.0")]
[assembly: AssemblyFileVersion("13.2.2.0")]
// [assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyVersion("13.3.0.0")]
[assembly: AssemblyFileVersion("13.3.0.0")]
2 changes: 1 addition & 1 deletion src.net/utilities/MpxjUtilities.nca31.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\mpxj.snk</AssemblyOriginatorKeyFile>
<Version>13.2.2.0</Version>
<Version>13.3.0.0</Version>
<Copyright>Copyright © Packwood Software</Copyright>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src.python/mpxj/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="mpxj",
version="13.2.2",
version="13.3.0",
author="Jon Iles",
author_email="[email protected]",
description="Python wrapper for the MPXJ Java library for manipulating project files",
Expand Down
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 = "13.2.2"
VERSION = "13.3.0"
end
4 changes: 3 additions & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
<author email="[email protected]">Jon Iles</author>
</properties>
<body>
<release date="unreleased" version="13.3.0">
<release date="unreleased" version="13.3.1">
</release>
<release date="2024-08-22" version="13.3.0">
<action dev="joniles" type="update">When reading multiple Primavera schedules from the same source, MPXJ now ensures that instances of activity code definitions, user defined field definitions, locations, units of measure, expense categories, cost accounts, work contours, and notes topics are shared across projects. This will allow you to, for example, filter tasks from multiple projects using a `Location` instance. Previously each project had its own independent instances for each of these types, which could not be used across multiple projects.</action>
<action dev="joniles" type="update">When reading Powerproject schedules, ensure that the Activity ID attribute for WBS entries is populated using Powerproject's Unique Task ID attribute.</action>
<action dev="joniles" type="update">Add support for reading timephased planned work from MPP files for manually scheduled tasks (Contributed by Fabian Schmidt).</action>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sf/mpxj/MPXJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
*/
public final class MPXJ
{
public static final String VERSION = "13.2.2";
public static final String VERSION = "13.3.0";
}

0 comments on commit f260698

Please sign in to comment.