Skip to content

Commit c8f3a41

Browse files
committed
v0.0.9
1 parent b78b0a0 commit c8f3a41

File tree

6 files changed

+30
-13
lines changed

6 files changed

+30
-13
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,21 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
88

99
### Changed
1010

11+
### Fixed
12+
13+
### Added
14+
15+
### Removed
16+
17+
## [0.0.9] - 2021-04-10
18+
19+
### Changed
20+
1121
- Formatting updates.
22+
- Updated to jdk6.
23+
- `build.gradle` packages version updates.
24+
- Gradle version update.
25+
- Update to Github action setup java v2.
1226

1327
## [0.0.8] - 2021-03-07
1428

@@ -95,7 +109,8 @@ The format is based on [Keep a Changelog][Keep a Changelog], and this project ad
95109
[Semantic Versioning]: https://semver.org/
96110

97111
<!-- Versions -->
98-
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.8..HEAD
112+
[Unreleased]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.9..HEAD
113+
[0.0.9]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.8..v0.0.9
99114
[0.0.8]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.7..v0.0.8
100115
[0.0.7]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.6..v0.0.7
101116
[0.0.6]: https://github.com/computer-science-engineering/vscode-cse-framework/compare/v0.0.5..v0.0.6

package.json

Lines changed: 1 addition & 1 deletion
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.8",
5+
"version": "0.0.9",
66
"publisher": "manas-talukdar",
77
"license": "MIT",
88
"repository": {

static-to-copy/.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: 'CodeQL'
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [master]
8+
branches: [main]
99
schedule:
1010
- cron: '0 15 * * 3'
1111

@@ -28,9 +28,10 @@ jobs:
2828
uses: actions/checkout@v2
2929

3030
- name: setup java
31-
uses: actions/setup-java@v1
31+
- uses: actions/setup-java@v2
3232
with:
33-
java-version: '15.0.0'
33+
distribution: 'adopt'
34+
java-version: '16.0.0'
3435
architecture: x64
3536
- run: java -version
3637

static-to-copy/.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- name: Checkout submodules
1414
run: make git
15-
- uses: actions/setup-java@v1
15+
- uses: actions/setup-java@v2
1616
with:
17-
java-version: '15.0.0'
17+
distribution: 'adopt'
18+
java-version: '16.0.0'
1819
architecture: x64
1920
- run: java -version
2021
- name: Make java-code

static-to-copy/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ repositories {
2323
mavenCentral()
2424
}
2525

26-
ext.junit4Version = '4.13.1'
26+
ext.junit4Version = '4.13.2'
2727
ext.junitVintageVersion = '4.12.1'
2828
ext.junitPlatformVersion = '1.5.2'
2929
ext.junitJupiterVersion = '5.7.1'
30-
ext.log4jVersion = '2.14.0'
30+
ext.log4jVersion = '2.14.1'
3131

3232
apply plugin: 'java'
3333
apply plugin: 'eclipse'
@@ -49,8 +49,8 @@ jacocoTestCoverageVerification {
4949
}
5050
}
5151

52-
sourceCompatibility = JavaVersion.VERSION_15
53-
targetCompatibility = JavaVersion.VERSION_15
52+
sourceCompatibility = JavaVersion.VERSION_16
53+
targetCompatibility = JavaVersion.VERSION_16
5454

5555
compileJava {
5656
options.compilerArgs += ["--enable-preview"]
Lines changed: 1 addition & 1 deletion
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-6.8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)