File tree Expand file tree Collapse file tree 8 files changed +32
-8
lines changed Expand file tree Collapse file tree 8 files changed +32
-8
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ project/.gnupg/local*
77project /target
88target /
99.history
10+ .bsp
1011
1112# Java
1213* .class
Original file line number Diff line number Diff line change 11# Releases
22
3- * [ v0.1.0] ( changes_0.1.0.md )
3+ * [ 0.1.1] ( changes_0.1.1.md )
4+ * [ 0.1.0] ( changes_0.1.0.md )
Original file line number Diff line number Diff line change 33## Features
44
55* [ #1 ] ( https://github.com/exasol/import-export-udf-common-scala/issues/1 ) : Added initial implementation (PR [ #2 ] ( https://github.com/exasol/import-export-udf-common-scala/pull/2 ) )
6- * [ #3 ] ( https://github.com/exasol/import-export-udf-common-scala/issues/3 ) : Updated documentation (PR [ #4 ] ( https://github.com/exasol/import-export-udf-common-scala/pull/6 ) )
6+ * [ #3 ] ( https://github.com/exasol/import-export-udf-common-scala/issues/3 ) : Updated documentation (PR [ #6 ] ( https://github.com/exasol/import-export-udf-common-scala/pull/6 ) )
Original file line number Diff line number Diff line change 1+ # Import Export UDF Common Scala 0.1.1, released 2020-10-DD
2+
3+ ## Features
4+
5+ * #9 : Added SLF4J Logging Library as Common Dependency (PR #10 )
6+
7+ ## Dependency Updates
8+
9+ ### Runtime Dependency Updates
10+
11+ * Updated `` sbt.version `` from ` 1.3.13 ` to ` 1.4.1 ` .
12+ * Updated `` com.fasterxml.jackson.core:jackson-databind `` from ` 2.11.2 ` to ` 2.11.3 ` .
13+
14+ ### Test Dependency Updates
15+
16+ * Updated `` org.mockito:mockito-core `` from ` 3.5.10 ` to ` 3.5.15 ` .
17+
18+ ### Plugin Updates
19+
20+ * Updated `` com.github.cb372:sbt-explicit-dependencies `` from ` 0.2.13 ` to ` 0.2.14 ` .
Original file line number Diff line number Diff line change @@ -8,20 +8,22 @@ object Dependencies {
88 // Runtime dependencies versions
99 private val ExasolVersion = " 6.1.7"
1010 private val AvroVersion = " 1.10.0"
11- private val JacksonVersion = " 2.11.2 "
11+ private val JacksonVersion = " 2.11.3 "
1212 private val TypesafeLoggingVersion = " 3.9.2"
13+ private val SLF4JVersion = " 1.7.30"
1314
1415 // Test dependencies versions
1516 private val ScalaTestVersion = " 3.2.2"
1617 private val ScalaTestPlusVersion = " 1.0.0-M2"
17- private val MockitoCoreVersion = " 3.5.10 "
18+ private val MockitoCoreVersion = " 3.5.15 "
1819
1920 val ExasolResolvers : Seq [Resolver ] = Seq (
2021 " Exasol Releases" at " https://maven.exasol.com/artifactory/exasol-releases"
2122 )
2223
2324 lazy val RuntimeDependencies : Seq [ModuleID ] = Seq (
2425 " com.exasol" % " exasol-script-api" % ExasolVersion ,
26+ " org.slf4j" % " slf4j-simple" % SLF4JVersion ,
2527 " com.typesafe.scala-logging" %% " scala-logging" % TypesafeLoggingVersion
2628 exclude (" org.slf4j" , " slf4j-api" )
2729 exclude (" org.scala-lang" , " scala-library" )
Original file line number Diff line number Diff line change 1- sbt.version =1.3.13
1+ sbt.version =1.4.1
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0")
5050
5151// Adds a `sbt-explicit-dependencies` plugin
5252// https://github.com/cb372/sbt-explicit-dependencies
53- addSbtPlugin(" com.github.cb372" % " sbt-explicit-dependencies" % " 0.2.13 " )
53+ addSbtPlugin(" com.github.cb372" % " sbt-explicit-dependencies" % " 0.2.14 " )
5454
5555// Setup this and project/project/plugins.sbt for formatting
5656// project/*.scala files with scalafmt
Original file line number Diff line number Diff line change 3434
3535set -o pipefail
3636
37- declare -r sbt_release_version=" 1.3.13 "
38- declare -r sbt_unreleased_version=" 1.4.0-M1 "
37+ declare -r sbt_release_version=" 1.4.1 "
38+ declare -r sbt_unreleased_version=" 1.4.1 "
3939
4040declare -r latest_213=" 2.13.3"
4141declare -r latest_212=" 2.12.12"
You can’t perform that action at this time.
0 commit comments