Skip to content

Commit

Permalink
(#85) VSCode extension release 0.1.9 published
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Jun 21, 2024
1 parent 18841a8 commit 846a0f0
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
10 changes: 5 additions & 5 deletions rust/suibase/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust/suibase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = ["crates/suibase-daemon",
[workspace.package]
# Bump 'version' for the daemon to self-restart after an update.
# (this is not the Suibase package version, it is specifically for the Rust crates).
version = "0.0.11"
version = "0.0.12"
edition = "2021"

[workspace.dependencies]
Expand Down
4 changes: 4 additions & 0 deletions typescript/vscode-extension/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
.vscode-test/**

# Ignore build artifacts
# (see exceptions at bottom of this file)
out/**
dist/**

# Ignore source code
src/**
Expand Down Expand Up @@ -36,6 +38,8 @@ node_modules
**/.eslintrc.cjs
**/*.map
**/*.ts
.env.production
.env.development

# Ignore markdown docs.
**/*.md
Expand Down
3 changes: 3 additions & 0 deletions typescript/vscode-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Important:
Do "~/suibase/update" to get latest Suibase CLI when upgrading the extension.

## 0.1.9
- New Move packages tracking feature (in sidebar).

## 0.1.8
- Tell user when Suibase CLI is outdated.
- Fix "copy to clipboard" and "open explorer" buttons.
Expand Down
3 changes: 1 addition & 2 deletions typescript/vscode-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Implemented features:
Coming soon features:
- Wallet/alias editor
- Manage local instance of Mysten Labs "suiexplorer"
- View most recent published packages (and created objects).
- Debug console for Move programs.
- Proxy server interface

Expand All @@ -23,4 +22,4 @@ See https://suibase.io for more information

(1) Do "~/suibase/update" to make sure you run the latest version of Suibase CLI

(2) Discord support: https://discord.com/invite/Erb6SwsVbH
(2) Discord support: https://discord.com/invite/Erb6SwsVbH
5 changes: 3 additions & 2 deletions typescript/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"license": "Apache-2.0",
"icon": "media/logo_128.png",
"version": "0.1.8",
"version": "0.1.9",
"repository": {
"type": "git",
"url": "https://github.com/ChainMovers/suibase.git"
Expand Down Expand Up @@ -84,7 +84,8 @@
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"dev": "npm run esbuild-base -- --sourcemap --watch",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"package": "vsce package"
"package": "vsce package patch",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
Expand Down
2 changes: 1 addition & 1 deletion typescript/vscode-extension/src/common/Consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// No dependency allowed here.

export const BACKEND_MIN_VERSION = "0.0.10";
export const BACKEND_MIN_VERSION = "0.0.12";

// workdir_idx are hard coded for performance.
// Note: These matches the definition used in the backend.
Expand Down

0 comments on commit 846a0f0

Please sign in to comment.