Skip to content

Commit

Permalink
Add changelog note
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Dec 16, 2024
1 parent 9107aab commit f55dfa8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Changelog

## 13.7.1 (unreleased)
## NOTE
From version 14.0.0 onwards the `net.sf.mpxj`, `net.sf.mpxj-for-csharp` and `net.sf.mpxj-for-vb` packages will
no longer be distributed. Please use the `MPXJ.Net` package instead.


## 13.8.0 (unreleased)
* Added support for reading and writing Project Codes, Resource Codes, Role Codes and Resource Assignment Codes for Primavera P6 schedules.
* When writing PMXML files, improve handling of P6 schedules where activity code sequence numbers are missing.
* Added an *experimental* feature to `MSPDIWriter` to allow the writer to generate timephased data when none is present. Disabled by default, call the `setGenerateMissingTimephasedData` and pass `true` to enable.
* To improve consistency, the methods `Task.getPrimaryResourceID()` and `Task.setPrimaryResourceID()` have been marked as deprecated. Use the new `Task.getPrimaryResourceUniqueID()` and `Task.setPrimaryResourceUniqueID()` methods instead.
* Added the methods `Task.getPrimaryResource()` and `Task.setPrimaryResource()`.
* Improved accuracy of retrieving the resource assignment GUID attribute when reading MPP files (Contributed by Fabian Schmidt).
* Improve population of Task Start and Finish attributes when reading Primavera P6 schedules.
* Marked the `ActivityCodeValue.getParent()` method as deprecated. Use `ActivityCodeValue.getParentValue()` instead.
* Marked the `ActivityCodeValue.getParentUniqueID()` method as deprecated. Use `ActivityCodeValue.getParentValueUniqueID()` instead.
* Marked the `ActivityCodeValue.Builder.parent()` method as deprecated. Use `ActivityCodeValue.Builder.parentValue()` instead.

## 13.7.0 (2024-11-25)
* Update the MPXJ ruby gem to allow access to calendar data.
Expand Down
5 changes: 5 additions & 0 deletions doc/changelog.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="no" method="text" omit-xml-declaration="yes"/>
<xsl:template match="/"># Changelog

## NOTE
From version 14.0.0 onwards the `net.sf.mpxj`, `net.sf.mpxj-for-csharp` and `net.sf.mpxj-for-vb` packages will
no longer be distributed. Please use the `MPXJ.Net` package instead.

<xsl:for-each select="/document/body/release">
## <xsl:value-of select="@version"/> (<xsl:value-of select="@date"/>)
<xsl:for-each select="action">
Expand Down

0 comments on commit f55dfa8

Please sign in to comment.