diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b78a8b..0770b80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log All notable changes to the MicroProfile Starter extension will be documented below. +## 0.2.9 +- MicroProfile 5.0 + ## 0.2.8 - MicroProfile 4.1 diff --git a/README.md b/README.md index 4805786..d98502c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# VS Code MicroProfile Starter Extension +# VS Code Extension for MicroProfile Starter [![Marketplace Version](https://vsmarketplacebadge.apphb.com/version/MicroProfile-Community.mp-starter-vscode-ext.svg "Current Release")](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.mp-starter-vscode-ext) [![Marketplace Installs](https://vsmarketplacebadge.apphb.com/installs-short/MicroProfile-Community.mp-starter-vscode-ext.svg "Installs")](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.mp-starter-vscode-ext) [![Build Status](https://travis-ci.org/MicroShed/mp-starter-vscode-ext.svg?branch=master)](https://travis-ci.org/MicroShed/mp-starter-vscode-ext) -The MicroProfile Starter extension provides support for generating a MicroProfile Maven project with examples based on the MicroProfile Starter project (https://start.microprofile.io/) by the MicroProfile community. You will be able to generate a project by choosing a MicroProfile version, server and specifications, such as CDI, Config, Health, Metrics, and more. The code for this extension is hosted under the MicroShed organization on GitHub. +The MicroProfile Starter extension provides support for generating a MicroProfile Maven project with examples based on the MicroProfile Starter project (https://start.microprofile.io/) in Visual Studio Code. You will be able to generate a project by choosing a MicroProfile version, server and specifications, such as CDI, Config, Health, Metrics, and more. The code for this extension is hosted under the MicroShed organization on GitHub. ## Quick Start diff --git a/package-lock.json b/package-lock.json index 2743887..7db4ae9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mp-starter-vscode-ext", - "version": "0.2.8", + "version": "0.2.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mp-starter-vscode-ext", - "version": "0.2.8", + "version": "0.2.9", "license": "Apache-2.0", "dependencies": { "adm-zip": "^0.4.14", diff --git a/package.json b/package.json index a42d8ae..5a20827 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "mp-starter-vscode-ext", "displayName": "MicroProfile Starter", "description": "Generate Java microservice Maven projects using MicroProfile", - "version": "0.2.8", + "version": "0.2.9", "publisher": "MicroProfile-Community", "preview": true, "license": "Apache-2.0", diff --git a/src/constants.ts b/src/constants.ts index e31e952..7aa2db2 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,6 +1,7 @@ export const MP_STARTER_API_ROOT = "https://start.microprofile.io/api/6"; export const MP_VERSION_LABELS: Record = { + MP50: "Version 5.0", MP41: "Version 4.1", MP40: "Version 4.0", MP33: "Version 3.3",