diff --git a/CHANGELOG.md b/CHANGELOG.md index b80a6b7..d1836e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log All notable changes to the "vscode-maven" extension will be documented in this file. +## 0.41.0 +### Added +- Support to navigate to POM file of modules. [#949](https://github.com/microsoft/vscode-maven/pull/949) +- Support to navigate to parent POM file. [#952](https://github.com/microsoft/vscode-maven/pull/952) +- Add profile support in Maven explorer. [#956](https://github.com/microsoft/vscode-maven/pull/956) + +### Changed +- Group common lifecycle phases into a submenu of the context menu. [#954](https://github.com/microsoft/vscode-maven/pull/954) + ## 0.40.4 ### Fixed - Missing "Resolve Unknow Type" feature when Language Support for Java was upgraded to v1.14.0. [#932](https://github.com/microsoft/vscode-maven/issues/932) diff --git a/package-lock.json b/package-lock.json index a86a405..98f9c77 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-maven", - "version": "0.40.4", + "version": "0.41.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-maven", - "version": "0.40.4", + "version": "0.41.0", "license": "MIT", "dependencies": { "domhandler": "^5.0.3", diff --git a/package.json b/package.json index ca21825..02175d1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-maven", "displayName": "Maven for Java", "description": "%description%", - "version": "0.40.4", + "version": "0.41.0", "icon": "resources/logo.png", "publisher": "vscjava", "preview": true,