Kaynağa Gözat

vscode extension 0.3.0

Signed-off-by: Sean Young <sean@mess.org>
Sean Young 3 yıl önce
ebeveyn
işleme
02a2194084
3 değiştirilmiş dosya ile 15 ekleme ve 7 silme
  1. 2 2
      docs/extension.rst
  2. 9 1
      vscode/CHANGELOG.md
  3. 4 4
      vscode/package.json

+ 2 - 2
docs/extension.rst

@@ -56,8 +56,8 @@ Once you have node and npm installed, you can build the extension like so:
     npm install -g vsce
     vsce package
 
-You should now have an extension file called solang-0.2.0.vsix which can be
-installed using `code --install-extension solang-0.2.0.vsix`.
+You should now have an extension file called solang-0.3.0.vsix which can be
+installed using `code --install-extension solang-0.3.0.vsix`.
 
 Alternatively, the extension be run from vscode itself.
 

+ 9 - 1
vscode/CHANGELOG.md

@@ -2,6 +2,14 @@
 
 All notable changes to the "solang" extension will be documented in this file.
 
+## [0.3.0]
+
+- Ensure the extension still works without a connections to the internet
+- Allow solang executable to set explicity to a path using
+  solang.forceSolangExecutable
+- Remove unsupported targets Sawtooth and
+- Updates for solang v0.1.10
+
 ## [0.2.0]
 
 - Automatically download a newer version of solang if available
@@ -9,4 +17,4 @@ All notable changes to the "solang" extension will be documented in this file.
 
 ## [0.1.0]
 
-- Initial release
+- Initial release

+ 4 - 4
vscode/package.json

@@ -4,7 +4,7 @@
 	"description": "Use the solang compiler for syntax highlighting, compiler warnings and errors, and hovers",
 	"publisher": "solang",
 	"author": "Shivam Balikondwar <shivambalikondwar@icloud.com>",
-	"version": "0.2.0",
+	"version": "0.3.0",
 	"repository": "github.com/hyperledger-labs/solang",
 	"engines": {
 		"vscode": "^1.43.0"
@@ -85,7 +85,7 @@
 	"dependencies": {
 		"node-fetch": "^2.6.1",
 		"semver": "^7.3.5",
-		"vsce": "^1.96.1",
+		"vsce": "^1.103.1",
 		"vscode-languageclient": "^6.1.3",
 		"vscode-languageserver": "^6.1.1",
 		"vscode-languageserver-protocol": "=3.15.3"
@@ -95,8 +95,8 @@
 		"@types/mocha": "^7.0.2",
 		"@types/node": "^12.12.0",
 		"@types/node-fetch": "^2.5.8",
-		"@types/vscode": "^1.43.0",
 		"@types/semver": "^7.3.8",
+		"@types/vscode": "^1.43.0",
 		"@typescript-eslint/eslint-plugin": "^4.15.0",
 		"@typescript-eslint/parser": "^4.15.0",
 		"eslint": ">=7.0.0",
@@ -105,4 +105,4 @@
 		"typescript": "^3.8.3",
 		"vscode-test": "^1.3.0"
 	}
-}
+}