Skip to content

Commit

Permalink
Merge pull request #21 from pushtorefresh/release-1.2.0
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
nikitin-da committed Jan 2, 2016
2 parents c1f90e2 + 23e8019 commit 5214f94
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,15 +90,15 @@ 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**:
```xml
<dependency>
<groupId>com.pushtorefresh.java-private-constructor-checker</groupId>
<artifactId>checker</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 5214f94

Please sign in to comment.