Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 0.0.9 #41

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
# Release Notes

## v0.0.9
## 0.0.9(2024-04-22)

- The UI was optimized and a deprecated tag was added to indicate that the API is not recommended.

## v0.0.8
## 0.0.8(2024-04-10)

- Fixed some Windows compatibility issues.
- Optimized the UI interface of webview.

## v0.0.7
## 0.0.7(2024-03-27)

- Launch experience satisfaction questionnaire survey
- You are welcome to submit your questions and suggestions on the [experience questionnaire](https://g.alicdn.com/aes/tracker-survey-preview/0.0.13/survey.html?pid=fePxMy&id=3486).

## v0.0.6
## 0.0.6(2024-02-21)

- Surpport code snippets.

## v0.0.5
## 0.0.5(2024-01-22)

- Added aliyun-cli installation instructions.

## v0.0.3
## 0.0.3(2024-01-03)

- Support API calling.
- Support SDK code sample.

## v0.0.1
## 0.0.1(2023-12-24)

Initial release

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Alibaba Cloud API Toolkit",
"description": "The Alibaba Cloud API Toolkit for VSCode makes it easier to access Alibaba Cloud services.",
"author": "Alibaba Cloud SDK Team",
"version": "0.0.8",
"version": "0.0.9",
"private": true,
"publisher": "alibabacloud-openapi",
"license": "Apache-2.0",
Expand Down Expand Up @@ -211,10 +211,11 @@
"media": "cd media && vite --mode browser",
"package": "vsce package",
"build:media": "cd media && npm run build",
"install:media": "cd media && yarn install",
"reinstall": "rimraf node_modules && npm i",
"afterinstall": "cd ../../ && lerna bootstrap",
"build:ncc": "rimraf dist && ncc build ./src/extension.ts -o dist -m --license licenses.txt && mv dist/index.js dist/extension.js",
"vscode:prepublish": "npm run build:media && npm run build:ncc",
"vscode:prepublish": "yarn install && npm run install:media && npm run build:media && npm run build:ncc",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --minify",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
Expand Down
Loading
Loading