Skip to content

Commit bc21660

Browse files
committed
MINOR: Scala, Scalafmt and Scalac SCoverage plugin version updates
details: - Scala: 2.13.17 -->> 2.13.18 (note: Java compatible versions: from 8 to 26) - Scalafmt: 3.10.0 -->> 3.10.2 - Scalac SCoverage plugin: 2.4.0 -->> 2.5.0 release notes: - Scala: - https://github.com/scala/scala/releases/tag/v2.13.18 - Scalafmt: - https://github.com/scalameta/scalafmt/releases/tag/v3.10.1 - https://github.com/scalameta/scalafmt/releases/tag/v3.10.2 - Scalac SCoverage plugin: - https://github.com/scoverage/scalac-scoverage-plugin/releases/tag/v2.4.1 - https://github.com/scoverage/scalac-scoverage-plugin/releases/tag/v2.4.2 - https://github.com/scoverage/scalac-scoverage-plugin/releases/tag/v2.5.0
1 parent 13c89e8 commit bc21660

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

checkstyle/.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
version = 3.10.0
15+
version = 3.10.2
1616
runner.dialect = scala213
1717
docstrings.style = Asterisk
1818
docstrings.wrap = false

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ group=org.apache.kafka
2424
# - streams/quickstart/java/src/main/resources/archetype-resources/pom.xml
2525
# - streams/quickstart/java/pom.xml
2626
version=4.3.0-SNAPSHOT
27-
scalaVersion=2.13.17
27+
scalaVersion=2.13.18
2828
# Adding swaggerVersion in gradle.properties to have a single version in place for swagger
2929
swaggerVersion=2.2.39
3030
task=build

gradle/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ext {
2323
}
2424

2525
// Add Scala version
26-
def defaultScala213Version = '2.13.17'
26+
def defaultScala213Version = '2.13.18'
2727
if (hasProperty('scalaVersion')) {
2828
if (scalaVersion == '2.13') {
2929
versions["scala"] = defaultScala213Version
@@ -120,8 +120,8 @@ versions += [
120120
// When updating the scalafmt version please also update the version field in checkstyle/.scalafmt.conf. scalafmt now
121121
// has the version field as mandatory in its configuration, see
122122
// https://github.com/scalameta/scalafmt/releases/tag/v3.1.0.
123-
scalafmt: "3.10.0",
124-
scoverage: "2.4.0",
123+
scalafmt: "3.10.2",
124+
scoverage: "2.5.0",
125125
slf4j: "1.7.36",
126126
snappy: "1.1.10.7",
127127
spotbugs: "4.9.8",

0 commit comments

Comments
 (0)