Skip to content

Commit

Permalink
Merge pull request #5 from griddb/5.7-rc
Browse files Browse the repository at this point in the history
Update for V5.7
  • Loading branch information
AnggaSuherman authored Nov 25, 2024
2 parents a6833de + 83c29ef commit 635db95
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ The GridDB export/import tools, to recover a database from local damages or the

Building and program execution are checked in the environment below.

OS: CentOS 7.9 (x64)
OS: Ubuntu22.04 (x64)
Java: OpenJDK 1.8.0
GridDB Server: V5.6 CE (Community Edition)
GridDB Java Client: 5.6 CE (Community Edition)
GridDB JDBC: V5.6 CE (Community Edition)
GridDB Server: V5.7 CE (Community Edition)
GridDB Java Client: 5.7 CE (Community Edition)
GridDB JDBC: V5.7 CE (Community Edition)

## Quick start - Build and Run

Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sourceSets {
}
}

def gridstoreVersion = '5.6.0'
def gridstoreVersion = '5.7.0'

dependencies {
implementation 'commons-io:commons-io:2.15.1'
Expand Down
4 changes: 2 additions & 2 deletions expimp-ce/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ sourceSets {
}
}

def gridstoreVersion = '5.6.0'
def gridstoreJdbcVersion = '5.6.0'
def gridstoreVersion = '5.7.0'
def gridstoreJdbcVersion = '5.7.0'

dependencies {
implementation project (":griddb-tools-common")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public String toString() {


/** Meta information file format version */
public static String EXPORT_MNG_FILE_VERSION = "5.6.0";
public static String EXPORT_MNG_FILE_VERSION = "5.7.0";

// V2.7.0 is not compatible with previous files
public static String EXPORT_MNG_FILE_VERSION_1 = "2.7.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
public class messageResource extends ListResourceBundle {

public static final String VERSION_NUM = "5.6.00";
public static final String VERSION_NUM = "5.7.00";
public static final String VERSION = "V"+VERSION_NUM;
public static final String GS_EXPORT_CE = "gs_export-ce";
public static final String GS_IMPORT_CE = "gs_import-ce";
Expand Down

0 comments on commit 635db95

Please sign in to comment.