Skip to content

Commit

Permalink
prepare for next development
Browse files Browse the repository at this point in the history
  • Loading branch information
KengoTODA authored and iloveeclipse committed Aug 16, 2017
1 parent 72920d7 commit e6d1eb5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This is the changelog for SpotBugs. This follows [Keep a Changelog v0.3](http://keepachangelog.com/en/0.3.0/).

## Unreleased (2017/??/??)

## 3.1.0-RC5 (2017/Aug/16)

### Removed
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'org.sonarqube' version '2.5'
}

version = '3.1.0-RC5'
version = '3.1.0-SNAPSHOT'

apply plugin: 'java'
apply from: "$rootDir/gradle/jacoco.gradle"
Expand Down Expand Up @@ -43,7 +43,7 @@ task jacocoRootReport(type: JacocoReport) {

executionData project(':spotbugs').file('build/jacoco/test.exec')
sourceDirectories = files(subprojects.sourceSets.main.allSource.srcDirs)

// Only enable class directories related to non-test project
classDirectories = files(subprojects.sourceSets.main.output).filter {
!it.toString().contains("-test") && !it.toString().contains("Test") && !it.toString().contains("junit")
Expand Down
3 changes: 3 additions & 0 deletions gradlePlugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

This is the changelog for SpotBugs Gradle Plugin. This follows [Keep a Changelog v0.3](http://keepachangelog.com/en/0.3.0/).

## Unreleased (2017/??/??)

## 1.3 (2017/Aug/16)

* Use SpotBugs 3.1.0-RC5
* Stop using [single class directory](https://docs.gradle.org/4.0.2/release-notes.html#multiple-class-directories-for-a-single-source-set) to prepare for Gradle v5 ([#299](https://github.com/spotbugs/spotbugs/issues/299))
* Print 'SpotBugs' instead of 'FindBugs' ([#291](https://github.com/spotbugs/spotbugs/issues/291))

Expand Down
2 changes: 1 addition & 1 deletion gradlePlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins{

apply from: "$rootDir/gradle/checkstyle.gradle"

version = "1.3"
version = "1.4-SNAPSHOT"
group = "com.github.spotbugs"

dependencies {
Expand Down

0 comments on commit e6d1eb5

Please sign in to comment.