Skip to content

Commit

Permalink
Update main to point to 6.0 after 5.5.0 release [REL-294] (#377)
Browse files Browse the repository at this point in the history
Update main to point to 6.0 after 5.5.0 release
Fixes [REL-294](https://hazelcast.atlassian.net/browse/REL-294)
  • Loading branch information
nishaatr committed Jul 31, 2024
1 parent 63a70c8 commit 68481ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,6 @@ Enterprise (located in Hazelcast Maven repository):
</repositories>
```

#### Release 4.2 (for Hazelcast 4.2, SQL in Beta)
```xml
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-jdbc</artifactId>
<version>4.2</version>
</dependency>
```

#### Snapshot versions
To download the latest snapshot build you need to add
the dependency and also the snapshot repository.
Expand All @@ -77,7 +68,7 @@ Open source:
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-jdbc</artifactId>
<version>5.5.0-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</dependency>
</dependencies>

Expand All @@ -102,7 +93,7 @@ Enterprise:
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-jdbc-enterprise</artifactId>
<version>5.5.0-SNAPSHOT</version>
<version>6.0.0-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@

@SuppressWarnings("checkstyle:TrailingComment")
public class JdbcDataBaseMetadata implements DatabaseMetaData {
private static final int JDBC_VERSION_MAJOR = 5;
private static final int JDBC_VERSION_MINOR = 5;
private static final int JDBC_VERSION_MAJOR = 6;
private static final int JDBC_VERSION_MINOR = 0;
private static final int DEFAULT_NUMBER_RADIX = 10;

private final JdbcConnection connection;
Expand Down

0 comments on commit 68481ae

Please sign in to comment.