Skip to content

Commit a7584c3

Browse files
authored
build - Prepare for 3.15.0 (#1523)
1 parent d904c27 commit a7584c3

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

Diff for: CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.15.0
8+
## What's Changed
9+
* feat - Support delegate tests to Gradle build Server by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1510
10+
* fix - Only send request after initialization by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1503
11+
* fix - Add java 22 to compatibility matrix by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1505
12+
* refactor - Introduce gson to simplify the object parsing by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1509
13+
* fix - Slice the build target list to 1 when running gradle tests by @jdneo in https://github.com/microsoft/vscode-gradle/pull/1518
14+
715
### 3.14.1
816
### What's Changed
917
* fix - Fix the importer version.

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.3.0</version>
7+
<version>0.4.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.3.0
5+
Bundle-Version: 0.4.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.3.0</version>
8+
<version>0.4.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.3.0</version>
7+
<version>0.4.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.14.1",
5+
"version": "3.15.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.3.0.jar"
46+
"./server/com.microsoft.gradle.bs.importer-0.4.0.jar"
4747
],
4848
"languages": [
4949
{

0 commit comments

Comments
 (0)