Skip to content

Commit

Permalink
Prepare for release 1.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanenicolas committed Oct 13, 2017
1 parent 6d6de46 commit 0b43187
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,9 @@
//Continue from top

## Release version 1.1.1 (To be released)
## Release version 1.1.2 (To be released)

## Release version 1.1.1 (Oct. 13th, 2017)
* Fix issue #258, #256, #253: remove dependency to JSR 250 annotations, fix missing overrides.

## Release version 1.1.0 (Oct. 10th, 2017)

Expand Down
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -93,12 +93,12 @@ buildscript {
...
dependencies {
compile 'com.github.stephanenicolas.toothpick:toothpick-runtime:1.1.0'
// and for android -> compile 'com.github.stephanenicolas.toothpick:smoothie:1.1.0'
annotationProcessor 'com.github.stephanenicolas.toothpick:toothpick-compiler:1.1.0'
compile 'com.github.stephanenicolas.toothpick:toothpick-runtime:1.1.1'
// and for android -> compile 'com.github.stephanenicolas.toothpick:smoothie:1.1.1'
annotationProcessor 'com.github.stephanenicolas.toothpick:toothpick-compiler:1.1.1'
//highly recommended
testCompile 'com.github.stephanenicolas.toothpick:toothpick-testing:1.1.0'
testCompile 'com.github.stephanenicolas.toothpick:toothpick-testing:1.1.1'
testCompile 'mockito or easymock'
}
```
Expand All @@ -110,21 +110,21 @@ For java:
<dependency>
<groupId>com.github.stephanenicolas.toothpick</groupId>
<artifactId>toothpick-compiler</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.stephanenicolas.toothpick</groupId>
<artifactId>toothpick-runtime</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<scope>compile</scope>
</dependency>

<!-- highly recommended-->
<dependency>
<groupId>com.github.stephanenicolas.toothpick</groupId>
<artifactId>toothpick-testing</artifactId>
<version>1.1.0</version>
<version>1.1.1</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.1.1-SNAPSHOT
VERSION_NAME=1.1.1

POM_PACKAGING=JAR
POM_DESCRIPTION=DI.
Expand Down

0 comments on commit 0b43187

Please sign in to comment.