Skip to content

Commit

Permalink
Prep 1.8.3 (#95)
Browse files Browse the repository at this point in the history
* Bump to 1.8.3
* Update changelog
  • Loading branch information
pcj authored Dec 8, 2021
1 parent 53678b5 commit 166cc4a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.8.3 (Dec 08 2021)

- Bump bzl to 1.3.19
- Completion for selected rule attributes (srcs, data, tags, visibility).
- Sha256 download bugfix

## 1.8.2 (Dec 07 2021)

- Bump bzl to 1.3.16
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bazel-stack-vscode",
"displayName": "bazel-stack-vscode",
"description": "Bazel Support for Visual Studio Code",
"version": "1.8.2",
"version": "1.8.3",
"publisher": "StackBuild",
"license": "Apache-2.0",
"icon": "stackb-full.png",
Expand Down Expand Up @@ -234,7 +234,7 @@
},
"bsv.bzl.server.release": {
"type": "string",
"default": "v1.3.16",
"default": "v1.3.19",
"description": "Bzl release version"
},
"bsv.bzl.server.command": {
Expand Down Expand Up @@ -670,7 +670,7 @@
"bazel-explorer": [
{
"id": "bsv.workspace",
"name": "Stack VSCode v1.8.2",
"name": "Stack VSCode v1.8.3",
"icon": "media/bazel-wireframe.svg",
"contextualTitle": "Current Bazel Workspace"
}
Expand Down
2 changes: 1 addition & 1 deletion src/bezel/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export class BzlSettings extends Settings<BzlConfiguration> {
enabled: config.get<boolean>('enabled', true),
autoLaunch: config.get<boolean>('autoLaunch', true),
downloadBaseURL: config.get<string>('downloadBaseUrl', 'https://get.bzl.io'),
release: config.get<string>('release', 'v1.3.16'),
release: config.get<string>('release', 'v1.3.19'),
executable: normalize(config.get<string>('executable', '')),
address: address,
command: config.get<string[]>('command', ['serve', '--address=${address}']),
Expand Down

0 comments on commit 166cc4a

Please sign in to comment.