Skip to content

Commit 6e870de

Browse files
committed
Bump sourcekit-bazel-bsp to 0.8.1
1 parent edf3533 commit 6e870de

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Example/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.8.0")
1+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.8.1")
22
local_path_override(
33
module_name = "sourcekit_bazel_bsp",
44
path = "../",

Example/tools/sourcekit_lsp_binary.bzl

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

33
def _sourcekit_lsp_binary_impl(ctx):
44
ctx.download_and_extract(
5-
url = ["https://github.com/spotify/sourcekit-bazel-bsp/releases/download/0.8.0/sourcekit-bazel-bsp-0.8.0-darwin.zip"],
6-
sha256 = "179670bde96a0da2b41cf52da516b0cd35cb7b2e25113c5e0de7239fc68f82e8",
5+
url = ["https://github.com/spotify/sourcekit-bazel-bsp/releases/download/0.8.1/sourcekit-bazel-bsp-0.8.1-darwin.zip"],
6+
sha256 = "854fb47e59c8e5e292f4ab9e7a61caa2b1d09d224b6a1ff3ac29637f1a4b5192",
77
)
88
ctx.file("BUILD.bazel", """
99
exports_files(["sourcekit-bazel-bsp", "sourcekit-lsp"])

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module(
22
name = "sourcekit_bazel_bsp",
3-
version = "0.8.0",
3+
version = "0.8.1",
44
compatibility_level = 0,
55
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ https://github.com/user-attachments/assets/ca5a448d-03b1-4f8e-9de1-e403cc08953c
2727
- Add sourcekit-bazel-bsp as a dependency on your `MODULE.bazel` file:
2828

2929
```python
30-
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.8.0", repo_name = "sourcekit_bazel_bsp")
30+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.8.1", repo_name = "sourcekit_bazel_bsp")
3131
```
3232

3333
- Define a `setup_sourcekit_bsp` rule in a BUILD.bazel file of your choice. [You can find the full list of arguments here](rules/setup_sourcekit_bsp.bzl). Although the exact setup differs from project to project, here's what an example setup would look like:

Sources/SourceKitBazelBSP/RequestHandlers/InitializeHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import BuildServerProtocol
2121
import Foundation
2222
import LanguageServerProtocol
2323

24-
package let sourcekitBazelBSPVersion = "0.8.0"
24+
package let sourcekitBazelBSPVersion = "0.8.1"
2525
private let logger = makeFileLevelBSPLogger()
2626

2727
enum InitializeHandlerError: Error, LocalizedError {

rules/bsp_config.json.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcekit-bazel-bsp",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"bspVersion": "2.2.0",
55
"languages": [
66
"c",

0 commit comments

Comments
 (0)