diff --git a/CHANGELOG.md b/CHANGELOG.md index 25c0d8a..a327d69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,17 @@ Change Log ========== -Version 0.2 *(14/11/2016)* +Version 0.3 [Version 0.3](https://github.com/novoda/gradle-build-properties-plugin/releases/tag/v0.3) +-------------------------- + +- Removed built-in evaluation of project properties ([#PR12](https://github.com/novoda/gradle-build-properties-plugin/pull/12)). + +Version 0.2 [Version 0.2](https://github.com/novoda/gradle-build-properties-plugin/releases/tag/v0.2) -------------------------- - Made plugin compatible with non-Android projects ([#PR5](https://github.com/novoda/gradle-build-properties-plugin/pull/5)). -Version 0.1 *(11/11/2016)* +Version 0.1 [Version 0.1](https://github.com/novoda/gradle-build-properties-plugin/releases/tag/v0.1) -------------------------- - Initial release. diff --git a/README.md b/README.md index 6c21ded..3a19ff3 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.novoda:gradle-build-properties-plugin:0.2' + classpath 'com.novoda:gradle-build-properties-plugin:0.3' } } ``` diff --git a/gradle/publish.gradle b/gradle/publish.gradle index d366b24..04fe1f6 100644 --- a/gradle/publish.gradle +++ b/gradle/publish.gradle @@ -3,6 +3,6 @@ publish { userOrg = 'novoda' groupId = 'com.novoda' artifactId = 'gradle-build-properties-plugin' - publishVersion = '0.2' + publishVersion = '0.3' website = 'https://github.com/novoda/gradle-build-properties-plugin' }