Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ gradleWatchPluginVersion=0.1.5
livereloadGradlePluginVersion=0.2.1

description = Vavr Documentation
version = 0.9.3
version = 0.10.3
group = io.vavr
2 changes: 1 addition & 1 deletion src/docs/asciidoc/getting_started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>0.9.3</version>
<version>0.10.3</version>
</dependency>
</dependencies>
----
Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Rich Hickey, the creator of Clojure, gave a great talk about https://www.youtube
* behave type-safe when used in unchecked covariant casts (Java-specific)
The key to a better Java is to use __immutable values__ paired with __referentially transparent functions__.

Vavr provides the necessary http://static.javadoc.io/io.vavr/vavr/0.9.3/io/vavr/control/package-summary.html[controls] and https://static.javadoc.io/io.vavr/vavr/0.9.3/io/vavr/collection/package-summary.html[collections] to accomplish this goal in every-day Java programming.
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.

=== Data Structures in a Nutshell

Expand Down