Skip to content

Commit

Permalink
Release 1.1.1. Close #60
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Jul 21, 2016
1 parent 4a3f33b commit f8abac9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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

Expand Down Expand Up @@ -157,15 +157,15 @@ Download [latest release](https://github.com/aNNiMON/Lightweight-Stream-API/rele
<dependency>
<groupId>com.annimon</groupId>
<artifactId>stream</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
```
or Gradle:

```groovy
dependencies {
...
compile 'com.annimon:stream:1.1.0'
compile 'com.annimon:stream:1.1.1'
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion stream/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
4 changes: 2 additions & 2 deletions stream/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.annimon</groupId>
<artifactId>stream</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -33,7 +33,7 @@
<connection>scm:git:git@github.com:aNNiMON/Lightweight-Stream-API.git</connection>
<developerConnection>scm:git:git@github.com:aNNiMON/Lightweight-Stream-API.git</developerConnection>
<url>git@github.com:aNNiMON/Lightweight-Stream-API.git</url>
<tag>v1.1.0</tag>
<tag>v1.1.1</tag>
</scm>

<distributionManagement>
Expand Down
2 changes: 1 addition & 1 deletion streamTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit f8abac9

Please sign in to comment.