Skip to content

Commit 131f4cd

Browse files
authored
build - Prepare for 3.16.0 (#1540)
1 parent 3cfecc8 commit 131f4cd

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to the "vscode-gradle" extension will be documented in this
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 3.16.0
8+
## What's Changed
9+
* performance - Merge Task Server & Build Server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1512
10+
* performance - Merge Language Server to Gradle Server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1525
11+
* fix - Catch the error when running Gradle tests by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1524
12+
* fix - Wrong status code returned for test completion by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1532
13+
* fix - Override LanguageServer setTrace to avoid default Exception throw by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1533
14+
* fix - Get daemon status handle project folder name include empty space by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1537
15+
* documentation - Update architecture.md for merge server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1520
16+
* documentation - Update doc after merge language server by @Jiaaming in https://github.com/microsoft/vscode-gradle/pull/1528
17+
718
### 3.15.0
819
## What's Changed
920
* feat - Support delegate tests to Gradle build Server by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1510

Diff for: extension/jdtls.ext/com.microsoft.gradle.bs.importer.target/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
66
<artifactId>gradle-jdtls-ext-parent</artifactId>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
</parent>
99
<artifactId>com.microsoft.gradle.bs.importer.tp</artifactId>
1010
<name>${base.name} :: Target Platform</name>

Diff for: extension/jdtls.ext/com.microsoft.gradle.bs.importer/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Gradle Build Server Importer
44
Bundle-SymbolicName: com.microsoft.gradle.bs.importer;singleton:=true
5-
Bundle-Version: 0.4.0
5+
Bundle-Version: 0.5.0
66
Bundle-Activator: com.microsoft.gradle.bs.importer.ImporterPlugin
77
Bundle-RequiredExecutionEnvironment: JavaSE-17
88
Bundle-ActivationPolicy: lazy

Diff for: extension/jdtls.ext/com.microsoft.gradle.bs.importer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
77
<artifactId>gradle-jdtls-ext-parent</artifactId>
8-
<version>0.4.0</version>
8+
<version>0.5.0</version>
99
</parent>
1010
<artifactId>com.microsoft.gradle.bs.importer</artifactId>
1111
<packaging>eclipse-plugin</packaging>

Diff for: extension/jdtls.ext/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.gradle.jdtls.ext</groupId>
55
<artifactId>gradle-jdtls-ext-parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Gradle Build Server Client</base.name>

Diff for: extension/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: extension/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-gradle",
33
"displayName": "Gradle for Java",
44
"description": "Manage Gradle Projects, run Gradle tasks and provide better Gradle file authoring experience in VS Code",
5-
"version": "3.15.0",
5+
"version": "3.16.0",
66
"private": true,
77
"publisher": "vscjava",
88
"aiKey": "b4aae7d0-c65b-4819-92bf-1d2f537ae7ce",
@@ -43,7 +43,7 @@
4343
"main": "./dist/index.js",
4444
"contributes": {
4545
"javaExtensions": [
46-
"./server/com.microsoft.gradle.bs.importer-0.4.0.jar"
46+
"./server/com.microsoft.gradle.bs.importer-0.5.0.jar"
4747
],
4848
"languages": [
4949
{

0 commit comments

Comments
 (0)