Skip to content

Commit a2b3a4d

Browse files
committed
Fix typo
1 parent 11bfbe5 commit a2b3a4d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

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

6464
```
6565
dependencies {
66-
compile 'com.github.frankiesardo:icepick:2.3.4'
67-
provided 'com.github.frankiesardo:icepick-processor:2.3.4'
66+
compile 'com.github.frankiesardo:icepick:2.3.5'
67+
provided 'com.github.frankiesardo:icepick-processor:2.3.5'
6868
}
6969
```
7070

@@ -75,20 +75,20 @@ Maven:
7575
<dependency>
7676
<groupId>com.github.frankiesardo</groupId>
7777
<artifactId>icepick</artifactId>
78-
<version>2.3.4</version>
78+
<version>2.3.5</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>com.github.frankiesardo</groupId>
8282
<artifactId>icepick-processor</artifactId>
83-
<version>2.3.4</version>
83+
<version>2.3.5</version>
8484
<optional>true</optional>
8585
</dependency>
8686
</dependencies>
8787
```
8888

8989
Jar:
9090

91-
This is the [library](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick/2.3.4/icepick-2.3.4.jar) and here is the [processor](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick-processor/2.3.4/icepick-processor-2.3.4.jar).
91+
This is the [library](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick/2.3.5/icepick-2.3.5.jar) and here is the [processor](http://search.maven.org/remotecontent?filepath=com/github/frankiesardo/icepick-processor/2.3.5/icepick-processor-2.3.5.jar).
9292

9393
License
9494
-------

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ subprojects {
1616
mavenLocal()
1717
}
1818

19-
project.group = 'com.gihub.frankiesardo'
19+
project.group = 'com.github.frankiesardo'
2020
}
2121

2222

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.3.4"
4+
version = "2.3.5"
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.3.4"
4+
version = "2.3.5"
55

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

0 commit comments

Comments
 (0)