Skip to content

Commit

Permalink
prepare 1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stempler committed Oct 31, 2018
1 parent 9ec6656 commit 0200d6b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand All @@ -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
[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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Usage

```groovy
plugins {
id "org.standardout.eclipseconfig" version "1.1.0"
id "org.standardout.eclipseconfig" version "1.1.1"
}
```

Expand All @@ -24,7 +24,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.standardout:gradle-eclipseconfig:1.1.0'
classpath 'org.standardout:gradle-eclipseconfig:1.1.1'
}
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -30,7 +30,7 @@ eclipseconfig {
}

group = 'org.standardout'
version = '1.2.0-SNAPSHOT'
version = '1.1.1'

sourceCompatibility = '1.6'
targetCompatibility = '1.6'
Expand Down

0 comments on commit 0200d6b

Please sign in to comment.