Skip to content

Commit 0c96e8b

Browse files
authored
Updating to version 0.10.4 and supporting Gradle 7 (#49)
1 parent 13c5924 commit 0c96e8b

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ gradleWatchPluginVersion=0.1.5
55
livereloadGradlePluginVersion=0.2.1
66

77
description = Vavr Documentation
8-
version = 0.10.3
8+
version = 0.10.4
99
group = io.vavr

src/docs/asciidoc/getting_started.adoc

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ dependencies {
1414
}
1515
----
1616

17+
Gradle 7+
18+
19+
[source,groovy]
20+
[subs="attributes"]
21+
----
22+
dependencies {
23+
implementation "io.vavr:vavr:{project-version}"
24+
}
25+
----
26+
1727
=== Maven
1828

1929
[source,xml]
@@ -22,7 +32,7 @@ dependencies {
2232
<dependency>
2333
<groupId>io.vavr</groupId>
2434
<artifactId>vavr</artifactId>
25-
<version>0.10.3</version>
35+
<version>0.10.4</version>
2636
</dependency>
2737
</dependencies>
2838
----

src/docs/asciidoc/introduction.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Rich Hickey, the creator of Clojure, gave a great talk about https://www.youtube
7070
* behave type-safe when used in unchecked covariant casts (Java-specific)
7171
The key to a better Java is to use __immutable values__ paired with __referentially transparent functions__.
7272

73-
Vavr provides the necessary http://static.javadoc.io/io.vavr/vavr/0.10.3/io/vavr/control/package-summary.html[controls] and https://static.javadoc.io/io.vavr/vavr/0.10.3/io/vavr/collection/package-summary.html[collections] to accomplish this goal in every-day Java programming.
73+
Vavr provides the necessary http://static.javadoc.io/io.vavr/vavr/0.10.4/io/vavr/control/package-summary.html[controls] and https://static.javadoc.io/io.vavr/vavr/0.10.4/io/vavr/collection/package-summary.html[collections] to accomplish this goal in every-day Java programming.
7474

7575
=== Data Structures in a Nutshell
7676

0 commit comments

Comments
 (0)