From 5a2618f8ddc25b8f0fa15fadc9f58a5c39765f9c Mon Sep 17 00:00:00 2001 From: Yan Zhang Date: Fri, 21 Jan 2022 15:21:15 +0800 Subject: [PATCH] upversion to 0.35.0 (#784) Signed-off-by: Yan Zhang --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b28f54e..6ff711d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Change Log All notable changes to the "vscode-maven" extension will be documented in this file. +## 0.35.0 + +### Added +- Enable external call from other extensions to add dependencies. [#743](https://github.com/microsoft/vscode-maven/pull/743) +- Enable external call from other extensions to create Maven projects. [#775](https://github.com/microsoft/vscode-maven/pull/775) + +### Fixed +- Custom options were not passed to the command line when creating new projects. [#771](https://github.com/microsoft/vscode-maven/issues/771) +- Failed to attach to remote debuggee VM when debugging a Maven goal. [#757](https://github.com/microsoft/vscode-maven/issues/757) +- Setting `maven.settingsFile` was not honored when executing Maven commands. [#776](https://github.com/microsoft/vscode-maven/pull/776) +- StackOverflowException when there exists circular dependencies in projects. [#763](https://github.com/microsoft/vscode-maven/issues/763) + ## 0.34.2 ### Fixed - `Maven: Add a dependency` not working. [#766](https://github.com/microsoft/vscode-maven/issues/766) diff --git a/package-lock.json b/package-lock.json index 6e2b07c..f36ccfa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-maven", - "version": "0.34.2", + "version": "0.35.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c551812..aa572cc 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-maven", "displayName": "Maven for Java", "description": "%description%", - "version": "0.34.2", + "version": "0.35.0", "icon": "resources/logo.png", "publisher": "vscjava", "preview": true,