Skip to content

Commit 4eddf5d

Browse files
committed
upgrade jdbc
1 parent e2a09bd commit 4eddf5d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ lazy val root = project.withId("spark-snowflake").in(file("."))
2929
.settings(
3030
name := "spark-snowflake",
3131
organization := "net.snowflake",
32-
version := "2.5.2-snapshot",
32+
version := "2.5.2",
3333
scalaVersion := sys.props.getOrElse("SPARK_SCALA_VERSION", default = "2.12.8"),
3434
crossScalaVersions := Seq("2.11.12","2.12.8"),
3535
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
@@ -39,7 +39,7 @@ lazy val root = project.withId("spark-snowflake").in(file("."))
3939
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
4040
libraryDependencies ++= Seq(
4141
"net.snowflake" % "snowflake-ingest-sdk" % "0.9.6",
42-
"net.snowflake" % "snowflake-jdbc" % "3.8.5",
42+
"net.snowflake" % "snowflake-jdbc" % "3.9.0",
4343
"com.google.guava" % "guava" % "14.0.1" % Test,
4444
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
4545
"org.mockito" % "mockito-core" % "1.10.19" % Test,

Diff for: src/main/scala/net/snowflake/spark/snowflake/Utils.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ object Utils {
4646
*/
4747
val SNOWFLAKE_SOURCE_NAME = "net.snowflake.spark.snowflake"
4848

49-
val VERSION = "2.5.1"
49+
val VERSION = "2.5.2"
5050

5151
private[snowflake] val JDBC_DRIVER = "net.snowflake.client.jdbc.SnowflakeDriver"
5252

0 commit comments

Comments
 (0)