Skip to content

Commit

Permalink
Publish 0.3.0 (#14)
Browse files Browse the repository at this point in the history
Signed-off-by: itowlson <ivan.towlson@fermyon.com>
  • Loading branch information
itowlson authored Jun 16, 2022
1 parent efd752f commit 8f0392c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
- Automatically install Spin
- Tasks for `spin build` and `spin up`
- Add auto-installed Spin to integrated terminal path
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 8f0392c

Please sign in to comment.