Skip to content

Commit decc87d

Browse files
authored
Merge pull request #3141 from keyno63/fix/scalatest-version
update scalatest version
2 parents fe25dea + 385efcf commit decc87d

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

_ja/getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Scala には複数のライブラリとテスト方法がありますが、こ
1616
1. ScalaTest への依存を追加します。
1717
1. `build.sbt` ファイルに ScalaTest への依存を追加します。
1818
```
19-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % Test
19+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test
2020
```
2121
1. `build.sbt was changed` という通知が出たら、**auto-import** を選択します。
2222
1. これらの2つのアクションにより、`sbt` が ScalaTest ライブラリをダウンロードします。

_overviews/getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This assumes you know [how to build a project in IntelliJ](building-a-scala-proj
2020
1. Add the ScalaTest dependency:
2121
1. Add the ScalaTest dependency to your `build.sbt` file:
2222
```
23-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.11" % Test
23+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test
2424
```
2525
1. If you get a notification "build.sbt was changed", select **auto-import**.
2626
1. These two actions will cause `sbt` to download the ScalaTest library.

_overviews/scala-book/sbt-scalatest-tdd.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ version := "1.0"
3939
scalaVersion := "{{site.scala-version}}"
4040

4141
libraryDependencies +=
42-
"org.scalatest" %% "scalatest" % "3.2.11" % Test
42+
"org.scalatest" %% "scalatest" % "3.2.19" % Test
4343

4444
```
4545

4646
The first three lines of this file are essentially the same as the first example, and the `libraryDependencies` lines tell sbt to include the dependencies (jar files) that are needed to run ScalaTest:
4747

4848
```scala
4949
libraryDependencies +=
50-
"org.scalatest" %% "scalatest" % "3.2.11" % Test
50+
"org.scalatest" %% "scalatest" % "3.2.19" % Test
5151
```
5252

5353
>The ScalaTest documentation has always been good, and you can always find the up to date information on what those lines should look like on the [Installing ScalaTest](http://www.scalatest.org/install) page.

_overviews/scala3-book/tools-sbt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ version := "0.1"
369369
scalaVersion := "{{site.scala-3-version}}"
370370
371371
libraryDependencies ++= Seq(
372-
"org.scalatest" %% "scalatest" % "3.2.9" % Test
372+
"org.scalatest" %% "scalatest" % "3.2.19" % Test
373373
)
374374
```
375375

_overviews/scala3-migration/tutorial-prerequisites.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ The dependency to `"scalatest" %% "scalatest" % "3.0.9"` must be upgraded becaus
4343
- The `scalatest` API is based on some macro definitions.
4444
- The `3.0.9` version is not published for Scala 3.
4545

46-
We can upgrade it to version `3.2.7`, which is cross-published in Scala 2.13 and Scala 3.
46+
We can upgrade it to version `3.2.19`, which is cross-published in Scala 2.13 and Scala 3.
4747

4848
```scala
49-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7"
49+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19"
5050
```
5151

5252
## Compiler plugins

_ru/getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ previous-page: /ru/building-a-scala-project-with-intellij-and-sbt
1818
1. Добавьте зависимость ScalaTest:
1919
1. Добавьте зависимость ScalaTest в свой файл `build.sbt`:
2020
```
21-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.11" % Test
21+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test
2222
```
2323
1. Если вы получили уведомление "build.sbt was changed", выберите **auto-import**.
2424
1. Эти два действия заставят `sbt` подгрузить библиотеки ScalaTest.

_ru/scala3/book/tools-sbt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ version := "0.1"
365365
scalaVersion := "{{site.scala-3-version}}"
366366

367367
libraryDependencies ++= Seq(
368-
"org.scalatest" %% "scalatest" % "3.2.9" % Test
368+
"org.scalatest" %% "scalatest" % "3.2.19" % Test
369369
)
370370
```
371371

_uk/getting-started/intellij-track/testing-scala-in-intellij-with-scalatest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ previous-page: /uk/building-a-scala-project-with-intellij-and-sbt
1818
1. Додайте залежність ScalaTest:
1919
1. Додайте залежність ScalaTest у файл `build.sbt` вашого проєкту:
2020
```
21-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.11" % Test
21+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test
2222
```
2323
1. Ви побачите сповіщення "build.sbt was changed", оберіть **auto-import**.
2424
1. Ці дві дії призведуть до того, що `sbt` завантажить бібліотеку ScalaTest.

_zh-cn/overviews/scala3-book/tools-sbt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ version := "0.1"
361361
scalaVersion := "{{site.scala-3-version}}"
362362
363363
libraryDependencies ++= Seq(
364-
"org.scalatest" %% "scalatest" % "3.2.9" % Test
364+
"org.scalatest" %% "scalatest" % "3.2.19" % Test
365365
)
366366
```
367367

0 commit comments

Comments
 (0)