Skip to content

Commit b4a8354

Browse files
committed
Bump version to 0.5.2 and update developer docs
1 parent 44345f6 commit b4a8354

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
All notable changes to the "vscode-cashscript" extension will be documented in this file.
44

5-
## v0.5.1
5+
## v0.5.2
66

77
- Add support for CashScript v0.11.0
88
- Add `slice` function
99
- Rename `tx.age` property to `this.age`
1010
- Add some missing completions & highlighting
1111
- Fix hover information for contract and function signatures
1212

13-
## v0.5.0
13+
## v0.5.0 & v0.5.1
1414

15-
This release was published incorrectly. All changes that were meant to be in this release are published in v0.5.1.
15+
These releases were published incorrectly. All changes that were meant to be in v0.5.0 are published in v0.5.2.
1616

1717
## v0.4.0
1818

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Press F5 anywhere to start the test window, open the examples folder to test out
5757
To publish the extension, we run the following command:
5858

5959
```
60-
yarn package
60+
yarn clean && yarn build && yarn package
6161
```
6262

6363
This creates a `cashscript-vscode-{version}.vsix` file in the root of the project.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "CashScript",
44
"displayName": "CashScript VSCode",
55
"description": "Cashscript language support for Visual Studio Code",
6-
"version": "0.5.1",
6+
"version": "0.5.2",
77
"icon": "media/icon.png",
88
"repository": {
99
"type": "git",
@@ -41,8 +41,8 @@
4141
"esbuild": "yarn esbuild-base --sourcemap",
4242
"esbuild-watch": "yarn esbuild-base --sourcemap --watch",
4343
"lint": "prettier --write .",
44-
"test-compile": "tsc -p ./",
45-
"compile": "tsc -p ./",
44+
"build": "tsc -p ./",
45+
"clean": "rm -rf out",
4646
"watch": "tsc -watch -p ./",
4747
"package": "vsce package --no-yarn"
4848
},

0 commit comments

Comments
 (0)