Skip to content

Commit

Permalink
Prepare for release 1.0.0-RC4.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemures committed Jul 5, 2016
1 parent bc37018 commit 607650c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
//Continue from top

## Release version 1.0.0-RC4 (Jul 5th 2016)

* fixing annotation processor compatibility issues with java 7

## Release version 1.0.0-RC3 (Jun 23th 2016)

* renaming binding methods for instances: to -> toInstance and toProvider -> toProviderInstance
Expand Down
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -90,12 +90,12 @@ buildscript {
}
}
dependencies {
compile 'com.github.stephanenicolas.toothpick:toothpick-runtime:1.0.0-RC3'
//and 'com.github.stephanenicolas.toothpick:smoothie:1.0.0-RC3'
apt 'com.github.stephanenicolas.toothpick:toothpick-compiler:1.0.0-RC3'
compile 'com.github.stephanenicolas.toothpick:toothpick-runtime:1.0.0-RC4'
// and for android -> compile 'com.github.stephanenicolas.toothpick:smoothie:1.0.0-RC4'
apt 'com.github.stephanenicolas.toothpick:toothpick-compiler:1.0.0-RC4'
//highly recommended
testCompile 'com.github.stephanenicolas.toothpick:toothpick-testing:1.0.0-RC3'
testCompile 'com.github.stephanenicolas.toothpick:toothpick-testing:1.0.0-RC4'
testCompile 'mockito or easymock'
}
```
Expand All @@ -107,21 +107,21 @@ For java:
<dependency>
<groupId>com.github.stephanenicolas.toothpick</groupId>
<artifactId>toothpick-compiler</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.stephanenicolas.toothpick</groupId>
<artifactId>toothpick-runtime</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
<scope>compile</scope>
</dependency>

<!-- highly recommended-->
<dependency>
<groupId>com.github.stephanenicolas.toothpick</groupId>
<artifactId>toothpick-testing</artifactId>
<version>1.0.0-RC3</version>
<version>1.0.0-RC4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,5 +1,5 @@
GROUP=com.github.stephanenicolas.toothpick
VERSION_NAME=1.0.0-RC4-SNAPSHOT
VERSION_NAME=1.0.0-RC4

POM_PACKAGING=JAR
POM_DESCRIPTION=DI.
Expand Down

0 comments on commit 607650c

Please sign in to comment.