Skip to content

Commit 9d1750e

Browse files
committed
v0.0.11
1 parent b373f7d commit 9d1750e

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
1010

1111
### Changed
1212

13-
- Changelog template updated.
14-
1513
### Deprecated
1614

1715
### Removed
@@ -20,6 +18,13 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
2018

2119
### Security
2220

21+
## [0.0.11] - 2021-04-10
22+
23+
### Changed
24+
25+
- Changelog template updated.
26+
- Updated `build.gradle`.
27+
2328
## [0.0.10] - 2021-04-10
2429

2530
### Changed
@@ -121,7 +126,8 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
121126
[Semantic Versioning]: https://semver.org/
122127

123128
<!-- Versions -->
124-
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.10..HEAD
129+
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.11..HEAD
130+
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.10..v0.0.11
125131
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.9..v0.0.10
126132
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.8..v0.0.9
127133
[0.0.8]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.7..v0.0.8

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-cse-framework",
33
"displayName": "cse-framework",
44
"description": "VSCode extension for cse repositories - provides templates, snippets, etc.",
5-
"version": "0.0.10",
5+
"version": "0.0.11",
66
"publisher": "manas-talukdar",
77
"license": "MIT",
88
"repository": {

static-to-copy/build.gradle

+10-6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ buildscript {
1010
plugins {
1111
id "org.sonarqube" version "3.1.1"
1212
id "com.github.nbaztec.coveralls-jacoco" version "1.2.12"
13+
id 'com.github.kt3k.coveralls' version '2.12.0'
1314
}
1415

1516
repositories {
@@ -146,15 +147,18 @@ afterEvaluate {
146147
}
147148

148149
check.dependsOn jacocoJupTestReport
149-
150-
coverallsJacoco {
151-
def jacocoJupTestReportTask = project.tasks.getByName('jacocoJupTestReport')
152-
reportPath = "${buildDir}/reports/jacoco/report.xml"
153-
reportSourceSets = files(jacocoJupTestReportTask.sourceDirectories.collect{ it.listFiles() }.flatten())
154-
}
155150
}
156151

157152
// https://github.com/ben-manes/caffeine/blob/master/build.gradle
153+
coveralls {
154+
jacocoReportPath = "${buildDir}/reports/jacoco/report.xml"
155+
}
156+
157+
coverallsJacoco {
158+
def jacocoJupTestReportTask = project.tasks.getByName('jacocoJupTestReport')
159+
reportPath = "${buildDir}/reports/jacoco/report.xml"
160+
reportSourceSets = files(jacocoJupTestReportTask.sourceDirectories.collect{ it.listFiles() }.flatten())
161+
}
158162

159163
// https://github.com/codeclimate/test-reporter/issues/243
160164
// task jacocoFixForCodeClimate(type: Copy) {

0 commit comments

Comments
 (0)