Skip to content

Commit

Permalink
Prepare release 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seut committed Apr 19, 2023
1 parent 1d19fc9 commit ad5a0ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Changes for Crate Data JDBC Client
Unreleased
==========

2023/04/18 2.7.0
================

- Changed ``getPrimaryKeys()`` SQL stmt to use the table schema as the schema
instead of the table catalog. This fixes compatibility with CrateDB >= 5.1.0
as all catalog fields at the ``information_schema.tables`` schema expose now
Expand Down
4 changes: 2 additions & 2 deletions driver/main/java/io/crate/client/jdbc/CrateDriverVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

public class CrateDriverVersion {

private static final boolean SNAPSHOT = true;
static final CrateDriverVersion CURRENT = new CrateDriverVersion(20601, SNAPSHOT);
private static final boolean SNAPSHOT = false;
static final CrateDriverVersion CURRENT = new CrateDriverVersion(20700, SNAPSHOT);

private final int id;
final byte major;
Expand Down

0 comments on commit ad5a0ae

Please sign in to comment.