Skip to content

Commit

Permalink
bump rcf version to 4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Kaituo Li <kaituo@amazon.com>
  • Loading branch information
kaituo committed Jul 12, 2024
1 parent d076571 commit 34f2066
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Java/benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</parent>

<artifactId>randomcutforest-benchmark</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</parent>

<artifactId>randomcutforest-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ public class Version {
public static final String V3_8 = "3.8";

public static final String V4_0 = "4.0";

public static final String V4_1 = "4.1";
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

package com.amazon.randomcutforest.state.preprocessor;

import static com.amazon.randomcutforest.state.Version.V4_0;
import static com.amazon.randomcutforest.state.Version.V4_1;

import java.io.Serializable;

Expand All @@ -27,7 +27,7 @@
public class PreprocessorState implements Serializable {
private static final long serialVersionUID = 1L;

private String version = V4_0;
private String version = V4_1;
private double useImputedFraction;
private String imputationMethod;
private String forestMode;
Expand Down
2 changes: 1 addition & 1 deletion Java/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</parent>

<artifactId>randomcutforest-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/parkservices/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</parent>

<artifactId>randomcutforest-parkservices</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
<packaging>pom</packaging>

<name>software.amazon.randomcutforest:randomcutforest</name>
Expand Down
2 changes: 1 addition & 1 deletion Java/serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</parent>

<artifactId>randomcutforest-serialization</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/testutils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>randomcutforest-parent</artifactId>
<groupId>software.amazon.randomcutforest</groupId>
<version>4.0.0</version>
<version>4.1.0</version>
</parent>

<artifactId>randomcutforest-testutils</artifactId>
Expand Down

0 comments on commit 34f2066

Please sign in to comment.