From 23e80195abc259076167b0988491d9708ba54433 Mon Sep 17 00:00:00 2001 From: Artem Zinnatullin Date: Sat, 2 Jan 2016 06:59:32 +0300 Subject: [PATCH] Release 1.2.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eec3850..2d4656b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ PrivateConstructorChecker Change Log ========== +## Version 1.2.0 + +_2015_01_2_ + +* Now you can check if class has one private constructor with expected arguments (thanks @vanniktech) + +**Changes:** + +* [PR 20](https://github.com/pushtorefresh/java-private-constructor-checker/pull/20) Add expectedWithParameters to PrivateConstructorChecker. Fixes #16 +* [PR 19](https://github.com/pushtorefresh/java-private-constructor-checker/pull/19) Add Test for forClasses method with empty classes +* [PR 18](https://github.com/pushtorefresh/java-private-constructor-checker/pull/18) Fix typo in README +* [PR 17](https://github.com/pushtorefresh/java-private-constructor-checker/pull/17) Clean Unit test up (favor ExpectedException over try catch fail) ## Version 1.1.0 diff --git a/README.md b/README.md index bd5cf3a..0e72b2b 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ What `PrivateConstructorChecker` does: **Gradle**: ```groovy -testCompile 'com.pushtorefresh.java-private-constructor-checker:checker:1.1.0' +testCompile 'com.pushtorefresh.java-private-constructor-checker:checker:1.2.0' ``` **Maven**: @@ -98,7 +98,7 @@ testCompile 'com.pushtorefresh.java-private-constructor-checker:checker:1.1.0' com.pushtorefresh.java-private-constructor-checker checker - 1.1.0 + 1.2.0 ``` diff --git a/gradle.properties b/gradle.properties index 4d5ffc0..890f36b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=1.1.0 +VERSION_NAME=1.2.0 GROUP=com.pushtorefresh.java-private-constructor-checker POM_DESCRIPTION=Checker for private constructors in Java classes