Skip to content

Commit a49bbae

Browse files
authored
Bump dependencies versions (#293)
* chore: upgrade Mockito Scala * chore: upgrade sbt-sonatype * chore: upgrade jackson * chore: upgrade sbt
1 parent c55996b commit a49bbae

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
1313

1414
### Changed
1515

16+
- [Build] Upgrade `sbt` to 1.6.2
17+
- [Build] Upgrade `mockito-scala` to 1.17.7
18+
- [Build] Upgrade `sbt-sonatype` to 3.9.13
19+
- [Build] Upgrade `jackson-module-scala` to 2.13.3
20+
1621
### Deprecated
1722

1823
### Removed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ scalaVersion := scala213
3939
// Library versions
4040

4141
val cucumberVersion = "7.3.4"
42-
val jacksonVersion = "2.13.2"
43-
val mockitoScalaVersion = "1.17.5"
42+
val jacksonVersion = "2.13.3"
43+
val mockitoScalaVersion = "1.17.7"
4444
val junitVersion = "4.13.2"
4545

4646
// Projects and settings

docs/default_jackson_datatable_transformer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ To use this optional transformer, you need to have Jackson Scala in your depende
1212
<dependency>
1313
<groupId>com.fasterxml.jackson.module</groupId>
1414
<artifactId>jackson-module-scala_2.13</artifactId>
15-
<version>2.13.0</version>
15+
<version>2.13.3</version>
1616
<scope>test</scope>
1717
</dependency>
1818
```
1919

2020
Or:
2121
```sbt
22-
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.0" % Test
22+
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.13.3" % Test
2323
```
2424

2525

26-
The current version of Cucumber Scala has been tested against Jackson Module Scala **version 2.13.0**.
26+
The current version of Cucumber Scala has been tested against Jackson Module Scala **version 2.13.3**.
2727

2828
## Add the transformer
2929

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.5
1+
sbt.version=1.6.2

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "2.0.1")
1111
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.13")
1212

1313
// Publishing
14-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.11")
14+
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
1515
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

0 commit comments

Comments
 (0)