Skip to content

Commit e5be7bb

Browse files
authored
Toolkit tutorial: use same sttp version as toolkit actually includes (#3015)
1 parent 60514be commit e5be7bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/_markdown/install-sttp.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ You can require the entire toolkit in a single line:
99

1010
Alternatively, you can require just a specific version of sttp:
1111
```scala
12-
//> using dep com.softwaremill.sttp.client4::core:4.0.0-M1
12+
//> using dep com.softwaremill.sttp.client4::core:4.0.0-M6
1313
```
1414
{% endtab %}
1515
{% tab 'sbt' %}
@@ -24,7 +24,7 @@ lazy val example = project.in(file("example"))
2424

2525
Alternatively, you can require just a specific version of sttp:
2626
```scala
27-
libraryDependencies += "com.softwaremill.sttp.client4" %% "core" % "4.0.0-M1"
27+
libraryDependencies += "com.softwaremill.sttp.client4" %% "core" % "4.0.0-M6"
2828
```
2929
{% endtab %}
3030
{% tab 'Mill' %}
@@ -40,7 +40,7 @@ object example extends ScalaModule {
4040
```
4141
Alternatively, you can require just a specific version of sttp:
4242
```scala
43-
ivy"com.softwaremill.sttp.client4::core:4.0.0-M1"
43+
ivy"com.softwaremill.sttp.client4::core:4.0.0-M6"
4444
```
4545
{% endtab %}
4646
{% endtabs %}

0 commit comments

Comments
 (0)