Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

**Changes in version 5.9 (not released yet)**

- Changed format of version for NHIA and NAPIIA and set both values to "20240801" and "20250801" respectively.
- Added optional behavior and DX year input to the Cause of Death Classification utility methods. This won't affect the corresponding algorithm, which uses the 2008 SEER Site Recode logic.

**Changes in version 5.8**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
public final class NapiiaUtils {

public static final String ALG_NAME = "NAACCR Asian/Pacific Islander Identification Algorithm (NAPIIA)";
public static final String ALG_VERSION = "released in August 2025";
public static final String ALG_VERSION = "20250801";

public static final String REASON_1_3_3 = "More than one race 04-32 and one race 96 or 97 (step 1.3.3).";
public static final String REASON_1_3_5 = "One or more races 02-03 and one race 96 (step 1.3.5).";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/imsweb/algorithms/nhia/NhiaUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
public final class NhiaUtils {

public static final String ALG_NAME = "NAACCR Hispanic Identification Algorithm (NHIA)";
public static final String ALG_VERSION = "released in August 2024";
public static final String ALG_VERSION = "20240801";

public static final String NHIA_NON_HISPANIC = "0";
public static final String NHIA_MEXICAN = "1";
Expand Down