From 8f0392cc6605a3908c67bdbe0fdd19fb46d079ea Mon Sep 17 00:00:00 2001 From: itowlson Date: Fri, 17 Jun 2022 09:44:09 +1200 Subject: [PATCH] Publish 0.3.0 (#14) Signed-off-by: itowlson --- CHANGELOG.md | 10 ++++------ package.json | 2 +- src/installer.ts | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad2ffd..fb9fd08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,7 @@ # Change Log -All notable changes to the "spin-vscode" extension will be documented in this file. +## [0.3.0] -Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. - -## [Unreleased] - -- Initial release \ No newline at end of file +- Automatically install Spin +- Tasks for `spin build` and `spin up` +- Add auto-installed Spin to integrated terminal path diff --git a/package.json b/package.json index 349abcd..92b1ff5 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "displayName": "Spin", "description": "Build and test Spin components from within VS Code", "icon": "images/spin-icon.png", - "version": "0.0.1", + "version": "0.3.0", "preview": true, "repository": { "type": "git", diff --git a/src/installer.ts b/src/installer.ts index 6fc5793..ba6c24b 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -10,7 +10,7 @@ import { Errorable, err, ok, isErr, isOk } from "./errorable"; import * as layout from './layout'; import { longRunning } from './longrunning'; -const SPIN_VERSION = "0.2.0"; +const SPIN_VERSION = "0.3.0"; const SPIN_DONWLOAD_URL_TEMPLATE = `https://github.com/fermyon/spin/releases/download/v${SPIN_VERSION}/spin-v${SPIN_VERSION}-{{subst:os}}-{{subst:arch}}.{{subst:fmt}}`; const SPIN_TOOL_NAME = "spin"; const SPIN_BIN_NAME = "spin";