From d3a6a240f9183b35ade94a50687dabe22f397726 Mon Sep 17 00:00:00 2001 From: edy Date: Mon, 8 Jul 2024 11:19:53 +0800 Subject: [PATCH] update version --- Cargo.lock | 2 +- Cargo.toml | 2 +- editors/code/README.md | 5 ++--- editors/code/package.json | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 64c2147..5d14575 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -170,7 +170,7 @@ checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" [[package]] name = "aptos-move-analyzer" -version = "0.5.0" +version = "1.0.0" dependencies = [ "anyhow", "bisection", diff --git a/Cargo.toml b/Cargo.toml index 8647933..7b609c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aptos-move-analyzer" -version = "0.5.0" +version = "1.0.0" authors = ["BitsLab/MoveBit"] description = "A language server for Move" repository = "https://github.com/movebit/move" diff --git a/editors/code/README.md b/editors/code/README.md index fd3ecec..50a1b2d 100644 --- a/editors/code/README.md +++ b/editors/code/README.md @@ -8,7 +8,7 @@ ## Introduction -The **aptos-move-analyzer** is a Visual Studio Code plugin for **Aptos Move** language developed by [MoveBit](https://movebit.xyz). Although this is an alpha release, it has many useful features, such as **highlight, autocomplete, go to definition/references**, and so on. +The **aptos-move-analyzer** is a Visual Studio Code plugin for **Aptos Move** language developed by [MoveBit](https://movebit.xyz). ## Features @@ -26,7 +26,6 @@ Move source file (a file with a `.move` file extension) and: - go to references - type on hover - inlay hints - - linter for move file - formatter for move file - ... @@ -69,7 +68,7 @@ cargo install --git https://github.com/movebit/aptos-move-analyzer --branch rele The installation may take some time, often several minutes. After installation, the `aptos-move-analyzer` program is in your `cargo` binary directory. On macOS and Linux, this directory is usually `~/.cargo/bin`. You should make sure this location is in your `PATH` environment variable via `export PATH="$PATH:~/.cargo/bin"` . To confirm that you've installed the language server program successfully, execute -`aptos-move-analyzer --version` on the command line. You should see the output `aptos-move-analyzer version number(0.5.0)`. +`aptos-move-analyzer --version` on the command line. You should see the output `aptos-move-analyzer version number(1.0.0)`. If you don't see it, check the troubleshooting section at the end. After completing the above steps, **restart** VSCode. diff --git a/editors/code/package.json b/editors/code/package.json index deb4fb9..52a0fb0 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -5,7 +5,7 @@ "publisher": "MoveBit", "icon": "images/move.png", "license": "Apache-2.0", - "version": "0.5.0", + "version": "0.9.0", "preview": true, "homepage": "https://github.com/move-language/move", "repository": {