From b0424cf7e71df572a99528e05e46c3c027457598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Schalk=20W=2E=20Cronj=C3=A9?= Date: Thu, 7 May 2015 15:36:06 +0100 Subject: [PATCH] Ready for a 1.0.2 release --- CHANGELOG.adoc | 36 ++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 18 ------------------ build.gradle | 2 +- 3 files changed, 37 insertions(+), 19 deletions(-) create mode 100644 CHANGELOG.adoc delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc new file mode 100644 index 0000000..63bd95b --- /dev/null +++ b/CHANGELOG.adoc @@ -0,0 +1,36 @@ += CHANGELOG + +== Version 1.0.2 + +=== Bugs +* https://github.com/ysb33r/gnumake-gradle-plugin/issues/4[#4] Environments can now be set for `GnuMakeBuild` tasks. + +== Version 1.0.1 + +=== Bugs +* https://github.com/ysb33r/gnumake-gradle-plugin/issues/3[#3] Fixed Gradle 2.2+ incompatibility + +=== Other +* Now using https://github.com/ysb33r/gradleTest[gradleTest plugin] to test Gradle version compatibility. + +== Version 1.0 + +=== Features + +* A default task called `make` is added when the plugin is applied. +* Add file monitors for input or output so that Gradle will known when to run the `make` tasks +* DSL improvements +* Add rules such that `gradle makeClean` will run `make clean` +* If you do `:a:b:c:makeClean` Gradle will execute the `make` task in `a/b/c`. +* If no Makefile is provided, make will use startand rules to look for a Makefile. + +== Version 0.3 + +=== Features +* Add `gnumake` extension + +== Version 0.2 +* Change plugin id to `org.ysb33r.gnumake` + +== Version 0.1 +* Initial release \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index d3dfcd3..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,18 +0,0 @@ -# CHANGELOG - -## Version 1.0 -- A default task called `make` is added when the plugin is applied. -- Add file monitors for input or output so that Gradle will known when to run the `make` tasks -- DSL improvements -- Add rules such that `gradle makeClean` will run `make clean` -- If you do `:a:b:c:makeClean` Gradle will execute the `make` task in `a/b/c`. -- If no Makefile is provided, make will use startand rules to look for a Makefile. - -## Version 0.3 -- Add `gnumake` extension - -## Version 0.2 -- Change plugin id to `org.ysb33r.gnumake` - -## Version 0.1 -- Initial release \ No newline at end of file diff --git a/build.gradle b/build.gradle index 8bb7e99..dbbec1e 100644 --- a/build.gradle +++ b/build.gradle @@ -41,7 +41,7 @@ apply plugin : 'org.ysb33r.gradletest' group = 'org.ysb33r.gradle' archivesBaseName = 'gnumake' -version = '1.0.2-SNAPSHOT' +version = '1.0.2' sourceCompatibility = 1.6 targetCompatibility = 1.6