Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Apr 12, 2018
1 parent 98d2d31 commit 2b2a5b0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -186,15 +186,15 @@ Download [latest release](https://github.com/aNNiMON/Lightweight-Stream-API/rele
<dependency>
<groupId>com.annimon</groupId>
<artifactId>stream</artifactId>
<version>1.1.9</version>
<version>1.2.0</version>
</dependency>
```
or Gradle:

```groovy
dependencies {
...
compile 'com.annimon:stream:1.1.9'
implementation 'com.annimon:stream:1.2.0'
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion stream/build.gradle
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java-library'
apply plugin: 'maven'

archivesBaseName = 'stream'
version = '1.1.9-SNAPSHOT'
version = '1.2.0-SNAPSHOT'
group = 'com.annimon'
ext.isReleaseVersion = !version.contains("SNAPSHOT")

Expand Down
4 changes: 2 additions & 2 deletions stream/pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.annimon</groupId>
<artifactId>stream</artifactId>
<version>1.1.9</version>
<version>1.2.0</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.9</tag>
<tag>v1.2.0</tag>
</scm>

<distributionManagement>
Expand Down
Expand Up @@ -12,7 +12,7 @@
import java.util.Iterator;

/**
* Custom operator examples for {@code Stream.custom) method.
* Custom operator examples for {@code Stream.custom} method.
*
* @see com.annimon.stream.Stream#custom(com.annimon.stream.function.Function)
*/
Expand Down
2 changes: 1 addition & 1 deletion streamTest/build.gradle
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java-library'
apply plugin: 'maven'

archivesBaseName = 'stream-test'
version = '1.1.9-SNAPSHOT'
version = '1.2.0-SNAPSHOT'
group = 'com.annimon'
ext.isReleaseVersion = !version.contains("SNAPSHOT")

Expand Down

0 comments on commit 2b2a5b0

Please sign in to comment.