Skip to content

Commit d12013a

Browse files
Merge branch 'master' into SNOW-1660591-Remove-Encryption-Storage-Info-In-Logs
2 parents 65412a5 + f7bc9b2 commit d12013a

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/build-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727
jobs:
2828
build:
2929
name: Build
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: Build

.github/workflows/check-style.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
check-style:
99
name: Check Style
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Check Style

FIPS/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>net.snowflake</groupId>
77
<artifactId>snowflake-jdbc-parent</artifactId>
8-
<version>3.23.0</version>
8+
<version>3.23.1-SNAPSHOT</version>
99
<relativePath>../parent-pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>snowflake-jdbc-fips</artifactId>
13-
<version>3.23.0</version>
13+
<version>3.23.1-SNAPSHOT</version>
1414
<packaging>jar</packaging>
1515

1616
<name>snowflake-jdbc-fips</name>

parent-pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>net.snowflake</groupId>
77
<artifactId>snowflake-jdbc-parent</artifactId>
8-
<version>3.23.0</version>
8+
<version>3.23.1-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<modules>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<parent>
77
<groupId>net.snowflake</groupId>
88
<artifactId>snowflake-jdbc-parent</artifactId>
9-
<version>3.23.0</version>
9+
<version>3.23.1-SNAPSHOT</version>
1010
<relativePath>./parent-pom.xml</relativePath>
1111
</parent>
1212

1313
<!-- Maven complains about using property here, but it makes install and deploy process easier to override final package names and localization -->
1414
<artifactId>${artifactId}</artifactId>
15-
<version>3.23.0</version>
15+
<version>3.23.1-SNAPSHOT</version>
1616
<packaging>jar</packaging>
1717

1818
<name>${artifactId}</name>

src/main/java/net/snowflake/client/jdbc/SnowflakeDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class SnowflakeDriver implements Driver {
3737
static SnowflakeDriver INSTANCE;
3838

3939
public static final Properties EMPTY_PROPERTIES = new Properties();
40-
public static String implementVersion = "3.23.0";
40+
public static String implementVersion = "3.23.1";
4141

4242
static int majorVersion = 0;
4343
static int minorVersion = 0;

0 commit comments

Comments
 (0)