Skip to content

Commit 8fb59b9

Browse files
committed
4.7 release.
1 parent 5e1e129 commit 8fb59b9

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,39 +31,39 @@ The recommended way to download and use the project is through your build tool.
3131

3232
The Functional Java artifact is published to Maven Central using the group `org.functionaljava` with three published artifacts:
3333

34-
* the core library (`functionaljava`)
34+
* the core library (`functionaljava` or `functionaljava_1.8` if you use Java 8+)
3535
* Java 8 specific support (`functionaljava-java8`)
36-
* property based testing (`functionaljava-quickcheck`)
36+
* property based testing (`functionaljava-quickcheck` or `functionaljava-quickcheck_1.8` if you use Java 8+)
3737

38-
The latest stable version is `4.6`. This can be added to your Gradle project by adding the dependencies:
38+
The latest stable version is `4.7`. This can be added to your Gradle project by adding the dependencies:
3939
----
40-
compile "org.functionaljava:functionaljava:4.6"
41-
compile "org.functionaljava:functionaljava-java8:4.6"
42-
compile "org.functionaljava:functionaljava-quickcheck:4.6"
43-
compile "org.functionaljava:functionaljava-java-core:4.6"
40+
compile "org.functionaljava:functionaljava:4.7"
41+
compile "org.functionaljava:functionaljava-java8:4.7"
42+
compile "org.functionaljava:functionaljava-quickcheck:4.7"
43+
compile "org.functionaljava:functionaljava-java-core:4.7"
4444
----
4545

4646
and in Maven:
4747
----
4848
<dependency>
4949
<groupId>org.functionaljava</groupId>
5050
<artifactId>functionaljava</artifactId>
51-
<version>4.6</version>
51+
<version>4.7</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>org.functionaljava</groupId>
5555
<artifactId>functionaljava-java8</artifactId>
56-
<version>4.6</version>
56+
<version>4.7</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.functionaljava</groupId>
6060
<artifactId>functionaljava-quickcheck</artifactId>
61-
<version>4.6</version>
61+
<version>4.7</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>org.functionaljava</groupId>
6565
<artifactId>functionaljava-java-core</artifactId>
66-
<version>4.6</version>
66+
<version>4.7</version>
6767
</dependency>
6868
----
6969

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ allprojects {
4646
defaultTasks "build"
4747

4848
ext {
49-
isSnapshot = true
49+
isSnapshot = false
5050
fjBaseVersion = "4.7"
5151

5252
snapshotAppendix = "-SNAPSHOT"

etc/release-notes/release-notes-4.7.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
= Release 4.7
33

4-
Released: unknown, potentially 25 March 2017
4+
Released: 27 March 2017
55

66
== Enhancements
77

0 commit comments

Comments
 (0)