Skip to content

Commit 3e5142e

Browse files
committed
Release
1 parent 12fcbe6 commit 3e5142e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Gradle:
7070

7171
```
7272
dependencies {
73-
compile 'com.github.frankiesardo:icepick:2.2'
74-
compile 'com.github.frankiesardo:icepick-processor:2.2'
73+
compile 'com.github.frankiesardo:icepick:2.2.1'
74+
compile 'com.github.frankiesardo:icepick-processor:2.2.1'
7575
}
7676
```
7777

@@ -81,12 +81,12 @@ Maven:
8181
<dependency>
8282
<groupId>com.github.frankiesardo</groupId>
8383
<artifactId>icepick</artifactId>
84-
<version>2.2</version>
84+
<version>2.2.1</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.github.frankiesardo</groupId>
8888
<artifactId>icepick-processor</artifactId>
89-
<version>2.2</version>
89+
<version>2.2.1</version>
9090
</dependency>
9191
```
9292

@@ -97,7 +97,7 @@ This is the [library](http://repository.sonatype.org/service/local/artifact/mave
9797
License
9898
-------
9999

100-
Copyright 2014 Frankie Sardo
100+
Copyright 2013 Frankie Sardo
101101

102102
Licensed under the Apache License, Version 2.0 (the "License");
103103
you may not use this file except in compliance with the License.

icepick-processor/deploy.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'maven'
22
apply plugin: 'signing'
33

4-
version = "2.2.1-SNAPSHOT"
4+
version = "2.2.1"
55

66
def isReleaseBuild() {
77
!version.contains("SNAPSHOT")

icepick/deploy.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'maven'
22
apply plugin: 'signing'
33

4-
version = "2.2.1-SNAPSHOT"
4+
version = "2.2.1"
55

66
def isReleaseBuild() {
77
!version.contains("SNAPSHOT")

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'android'
22
apply plugin: 'android-apt'
33

44
dependencies {
5-
compile 'com.github.frankiesardo:icepick:2.2.1-SNAPSHOT'
6-
apt 'com.github.frankiesardo:icepick-processor:2.2.1-SNAPSHOT'
5+
compile 'com.github.frankiesardo:icepick:2.2.1'
6+
apt 'com.github.frankiesardo:icepick-processor:2.2.1'
77
}
88

99
android {

0 commit comments

Comments
 (0)