diff --git a/README.md b/README.md
index 6f7baf05..e7d7e061 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Stream API from Java 8 rewritten on iterators for Java 7 and below.
### Includes
+ Functional interfaces (`Supplier`, `Function`, `Consumer` etc);
- + `Stream` (without parallel processing but with a variety of additional methods and with custom operators);
+ + `Stream`/`IntStream` (without parallel processing but with a variety of additional methods and with custom operators);
+ `Optional` class;
+ `Exceptional` class - functional way to deal with exceptions;
+ `Objects` from Java 7.
@@ -29,7 +29,7 @@ Stream.of(/* array | list | set | map | anything based on Iterator/Iterable inte
.sorted()
.forEach(..);
Stream.of(value1, value2, value3)...
-Stream.range(0, 10)...
+InStream.range(0, 10)...
```
Example project: https://github.com/aNNiMON/Android-Java-8-Stream-Example
@@ -157,7 +157,7 @@ Download [latest release](https://github.com/aNNiMON/Lightweight-Stream-API/rele
com.annimon
stream
- 1.1.0
+ 1.1.1
```
or Gradle:
@@ -165,7 +165,7 @@ or Gradle:
```groovy
dependencies {
...
- compile 'com.annimon:stream:1.1.0'
+ compile 'com.annimon:stream:1.1.1'
...
}
```
diff --git a/stream/build.gradle b/stream/build.gradle
index 972dd7b6..2acb986f 100644
--- a/stream/build.gradle
+++ b/stream/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'
archivesBaseName = 'stream'
-version = '1.1.0-SNAPSHOT'
+version = '1.1.1-SNAPSHOT'
group = 'com.annimon'
ext.isReleaseVersion = !version.contains("SNAPSHOT")
diff --git a/stream/pom.xml b/stream/pom.xml
index 3ea47563..2c68921e 100644
--- a/stream/pom.xml
+++ b/stream/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.annimon
stream
- 1.1.0
+ 1.1.1
jar
UTF-8
@@ -33,7 +33,7 @@
scm:git:git@github.com:aNNiMON/Lightweight-Stream-API.git
scm:git:git@github.com:aNNiMON/Lightweight-Stream-API.git
git@github.com:aNNiMON/Lightweight-Stream-API.git
- v1.1.0
+ v1.1.1
diff --git a/streamTest/build.gradle b/streamTest/build.gradle
index bba09879..729c044c 100644
--- a/streamTest/build.gradle
+++ b/streamTest/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'
archivesBaseName = 'stream-test'
-version = '1.0.1-SNAPSHOT'
+version = '1.1.1-SNAPSHOT'
group = 'com.annimon'
ext.isReleaseVersion = !version.contains("SNAPSHOT")