Skip to content

Commit 166cc4a

Browse files
authored
Prep 1.8.3 (#95)
* Bump to 1.8.3 * Update changelog
1 parent 53678b5 commit 166cc4a

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.8.3 (Dec 08 2021)
4+
5+
- Bump bzl to 1.3.19
6+
- Completion for selected rule attributes (srcs, data, tags, visibility).
7+
- Sha256 download bugfix
8+
39
## 1.8.2 (Dec 07 2021)
410

511
- Bump bzl to 1.3.16

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bazel-stack-vscode",
33
"displayName": "bazel-stack-vscode",
44
"description": "Bazel Support for Visual Studio Code",
5-
"version": "1.8.2",
5+
"version": "1.8.3",
66
"publisher": "StackBuild",
77
"license": "Apache-2.0",
88
"icon": "stackb-full.png",
@@ -234,7 +234,7 @@
234234
},
235235
"bsv.bzl.server.release": {
236236
"type": "string",
237-
"default": "v1.3.16",
237+
"default": "v1.3.19",
238238
"description": "Bzl release version"
239239
},
240240
"bsv.bzl.server.command": {
@@ -670,7 +670,7 @@
670670
"bazel-explorer": [
671671
{
672672
"id": "bsv.workspace",
673-
"name": "Stack VSCode v1.8.2",
673+
"name": "Stack VSCode v1.8.3",
674674
"icon": "media/bazel-wireframe.svg",
675675
"contextualTitle": "Current Bazel Workspace"
676676
}

src/bezel/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export class BzlSettings extends Settings<BzlConfiguration> {
253253
enabled: config.get<boolean>('enabled', true),
254254
autoLaunch: config.get<boolean>('autoLaunch', true),
255255
downloadBaseURL: config.get<string>('downloadBaseUrl', 'https://get.bzl.io'),
256-
release: config.get<string>('release', 'v1.3.16'),
256+
release: config.get<string>('release', 'v1.3.19'),
257257
executable: normalize(config.get<string>('executable', '')),
258258
address: address,
259259
command: config.get<string[]>('command', ['serve', '--address=${address}']),

0 commit comments

Comments
 (0)