Skip to content

Releases: btkelly/gnag

Release 3.0.4

31 Aug 18:28
Compare
Choose a tag to compare
  • Fixed issue #233 where file parsing in Ktlint on Windows wouldn't work

Release 3.0.3

28 Jul 18:54
Compare
Choose a tag to compare
  • Updated default tool versions to their latest
  • Fixed issue where Android Kotlin files would not be scanned

Release 3.0.2

12 Aug 16:34
Compare
Choose a tag to compare
  • Removed logger statement that was printing a bunch of unnecessary information

Release 3.0.1

11 Aug 20:24
Compare
Choose a tag to compare
  • Changed min Java version to 11 to support the embedded Android Studio JDK version which is currently 11

Release 3.0.0

11 Aug 20:23
9bc3658
Compare
Choose a tag to compare

Version 3.0.0 is a major version update with some breaking changes and core architecture updates.

  • Minimum JDK version is now 12
  • Minimum Gradle version is now 7.1.1
  • jCenter has been fully removed in preparation for it's EOL
  • Findbugs has been removed as it's no longer maintained
  • Checkstyle and PMD are no longer compiled into the plugin and can now update their versions using the toolVersion property outlined in the README
  • With the jCenter removal the plugin is only available on the official Gradle Plugin site (https://plugins.gradle.org/plugin/com.btkelly.gnag) and should be added to your Gradle file using the updated plugin DSL as shown below.
plugins {
  id "com.btkelly.gnag" version "3.0.1"
}

2.4.4

28 Jul 13:27
Compare
Choose a tag to compare
  • Fixed JDK 8 compatibility issue

2.4.2

21 Jul 20:48
Compare
Choose a tag to compare
  • Updated report file console output to make it a clickable URI

Release 2.4.1

31 Oct 13:50
Compare
Choose a tag to compare
  • Fixed issue with new version of Detekt not finding report file
  • Fixed issue with compiled binary using JDK 12

Release 2.4.0

29 Oct 13:58
Compare
Choose a tag to compare
  • Added ability to override version of detekt
  • Updated (0.35.0) and fixed Ktlint dependency name change
  • Updated Gradle version to 5.6.3

Release 2.3.0

19 Apr 14:15
Compare
Choose a tag to compare
  • Violation detector dependency updates
    • PMD updates may result in a few rules being inadvertently changed pmd/pmd#805.
  • README updates