Skip to content

Commit 1477c62

Browse files
committed
Updated gradle and plugins, etc.
1 parent fb7f30e commit 1477c62

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

CHANGELOG.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
1818

1919
### Security
2020

21+
## [0.0.14] - 2021-05-15
22+
23+
### Changed
24+
25+
- Updated gradle and plugins, etc.
26+
2127
## [0.0.13] - 2021-04-10
2228

2329
### Fixed
@@ -138,11 +144,12 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
138144
[Semantic Versioning]: https://semver.org/
139145

140146
<!-- Versions -->
141-
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.13..HEAD
142-
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.12..v0.0.13
143-
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.11..v0.0.12
144-
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.10..v0.0.11
145-
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.9..v0.0.10
147+
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.14..HEAD
148+
[0.0.14]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.13..v0.0.14
149+
[0.0.13]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.12..v0.0.13
150+
[0.0.12]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.11..v0.0.12
151+
[0.0.11]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.10..v0.0.11
152+
[0.0.10]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.9..v0.0.10
146153
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.8..v0.0.9
147154
[0.0.8]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.7..v0.0.8
148155
[0.0.7]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.6..v0.0.7

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.13",
5+
"version": "0.0.14",
66
"publisher": "manas-talukdar",
77
"license": "MIT",
88
"repository": {

static-to-copy/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
plugins {
11-
id "org.sonarqube" version "3.1.1"
11+
id "org.sonarqube" version "3.2.0"
1212
id "com.github.nbaztec.coveralls-jacoco" version "1.2.12"
1313
id 'com.github.kt3k.coveralls' version '2.12.0'
1414
}
@@ -23,7 +23,7 @@ repositories {
2323
ext.junit4Version = '4.13.2'
2424
ext.junitVintageVersion = '4.12.1'
2525
ext.junitPlatformVersion = '1.5.2'
26-
ext.junitJupiterVersion = '5.7.1'
26+
ext.junitJupiterVersion = '5.7.2'
2727
ext.log4jVersion = '2.14.1'
2828

2929
apply plugin: 'java'
@@ -208,4 +208,4 @@ tasks.withType(Test) {
208208
}
209209
}
210210
}
211-
}
211+
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)