Skip to content

Commit

Permalink
add snapshot version
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin committed Oct 16, 2024
1 parent ea57217 commit e31380c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=3.2.0
version=3.2.1-SNAPSHOT
jdbcVersion=4.3
2 changes: 1 addition & 1 deletion src/main/java/com/firebolt/jdbc/util/VersionUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class VersionUtil {
private static final String SPECIFICATION_VERSION = "Specification-Version";
private static final String FIREBOLT_IMPLEMENTATION_TITLE = "Firebolt JDBC driver"; // This value must be the same as one defined in build.gradle/jar/manifest/attributes

private static String driverVersion = "3.0.4";
private static String driverVersion = "3.2.1";
private static String specificationVersion = "4.3";

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ void shouldGetDriverMinorVersion() {

@Test
void shouldGetDriverVersion() throws SQLException {
assertEquals("3.2.0", fireboltDatabaseMetadata.getDriverVersion());
assertEquals("3.2.1-SNAPSHOT", fireboltDatabaseMetadata.getDriverVersion());
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/firebolt/jdbc/util/VersionUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void shouldGetDriverMinorVersion() {

@Test
void shouldGetProjectVersion() {
assertEquals("3.2.0", VersionUtil.getDriverVersion());
assertEquals("3.2.1", VersionUtil.getDriverVersion());
}

@Test
Expand Down

0 comments on commit e31380c

Please sign in to comment.