Skip to content

Commit 98209c7

Browse files
authored
update transpiler (#31)
1 parent 448f067 commit 98209c7

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "bitloops-language" extension will be documented in t
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
### 0.4.6
8+
9+
Updated version of bitloops-transpiler, added Iterator loop.
10+
711
### 0.4.5
812

913
Updated version of bitloops-transpiler, no hover if there are syntactic errors.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ No known issues.
3333

3434
## What's New
3535

36-
### 0.4.5
36+
### 0.4.6
3737

38-
Updated version of bitloops-transpiler, no hover if there are syntactic errors.
38+
Updated version of bitloops-transpiler, added Iterator for-of loop.
3939

4040
---
4141

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"icon": "assets/images/bitloops-language-logo-256x256.png",
1111
"license": "MIT",
12-
"version": "0.4.5",
12+
"version": "0.4.6",
1313
"scripts": {
1414
"vs:package": "vsce package",
1515
"vs:publish": "vsce publish",

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bitloops-lsp-server",
33
"description": "BitLoops Language Server",
4-
"version": "0.4.5",
4+
"version": "0.4.6",
55
"publisher": "Bitloops",
66
"license": "MIT",
77
"engines": {
@@ -10,7 +10,7 @@
1010
"type": "module",
1111
"scripts": {},
1212
"dependencies": {
13-
"@bitloops/bl-transpiler": "^0.7.0",
13+
"@bitloops/bl-transpiler": "^0.7.2",
1414
"debounce": "^1.2.1",
1515
"fs": "^0.0.1-security",
1616
"path": "^0.12.7",

server/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# yarn lockfile v1
33

44

5-
"@bitloops/bl-transpiler@^0.7.0":
6-
version "0.7.0"
7-
resolved "https://registry.yarnpkg.com/@bitloops/bl-transpiler/-/bl-transpiler-0.7.0.tgz#cc63bae8781d8addc830cd266720fa3205c8bdb6"
8-
integrity sha512-9584ZgekEZuOwVF/on/ooGsG1IoLptQk6vuY2uQGGKfknCnE/zY8bITL9PKO2M90RaDQn97vwDqQiYLQD/3AAg==
5+
"@bitloops/bl-transpiler@^0.7.2":
6+
version "0.7.2"
7+
resolved "https://registry.yarnpkg.com/@bitloops/bl-transpiler/-/bl-transpiler-0.7.2.tgz#ff79d98ee4854fb57aae08747b97eada748f7b1c"
8+
integrity sha512-bAa6jy2NtpcToQhDo2n3+ZPddEGbIIRpDVn1iwxWC81oO9clXudfkY1xhVR4JKVZIUljt1fMG/O/TFVgEi0iVw==
99
dependencies:
1010
antlr4 "4.11.0"
1111
lodash "^4.17.21"

0 commit comments

Comments
 (0)