From 0200d6b7d9bfb443a4c41e0f73c2926c2324f44f Mon Sep 17 00:00:00 2001 From: Simon Templer Date: Wed, 31 Oct 2018 16:50:37 +0100 Subject: [PATCH] prepare 1.1.1 release --- CHANGELOG.md | 9 +++++++-- README.md | 4 ++-- build.gradle | 4 ++-- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5eecfdd..a2f21b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ See the [change log guidelines](http://keepachangelog.com/) for information on h ## [Unreleased] +## [1.1.1] + +### Fixed +- Fix getting EditorConfig settings on Windows (#8) ## [1.1.0] @@ -18,5 +22,6 @@ See the [change log guidelines](http://keepachangelog.com/) for information on h Initial release. -[Unreleased]: https://github.com/stempler/gradle-eclipseconfig/compare/v1.1.0...HEAD -[1.1.0]: https://github.com/stempler/gradle-eclipseconfig/compare/v1.0.0...v1.1.0 \ No newline at end of file +[Unreleased]: https://github.com/stempler/gradle-eclipseconfig/compare/v1.1.1...HEAD +[1.1.1]: https://github.com/stempler/gradle-eclipseconfig/compare/v1.1.0...v1.1.1 +[1.1.0]: https://github.com/stempler/gradle-eclipseconfig/compare/v1.0.0...v1.1.0 diff --git a/README.md b/README.md index 23cbe93..6b87051 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Usage ```groovy plugins { - id "org.standardout.eclipseconfig" version "1.1.0" + id "org.standardout.eclipseconfig" version "1.1.1" } ``` @@ -24,7 +24,7 @@ buildscript { jcenter() } dependencies { - classpath 'org.standardout:gradle-eclipseconfig:1.1.0' + classpath 'org.standardout:gradle-eclipseconfig:1.1.1' } } diff --git a/build.gradle b/build.gradle index 74d3c16..0a6f545 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ apply plugin: 'org.standardout.eclipseconfig' // applies 'eclipse' plugin automa eclipseconfig { // codeTemplates = rootProject.file('codetemplates.xml') - + jdtUI { properties -> // make private fields final on save, if possible properties.'sp_cleanup.make_variable_declarations_final' = true @@ -30,7 +30,7 @@ eclipseconfig { } group = 'org.standardout' -version = '1.2.0-SNAPSHOT' +version = '1.1.1' sourceCompatibility = '1.6' targetCompatibility = '1.6'