Skip to content

Commit 0bd5351

Browse files
committed
Bump to 0.5.0
1 parent a265508 commit 0bd5351

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.4.2")
1+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.5.0")
22
local_path_override(
33
module_name = "sourcekit_bazel_bsp",
44
path = "../",

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.4.2",
3+
version = "0.5.0",
44
compatibility_level = 0,
55
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The next step is to integrate sourcekit-bazel-bsp with your project:
3838
- Add sourcekit-bazel-bsp as a dependency on your `MODULE.bazel` file:
3939

4040
```python
41-
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.4.2", repo_name = "sourcekit_bazel_bsp")
41+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.5.0", repo_name = "sourcekit_bazel_bsp")
4242
```
4343

4444
- Define a `setup_sourcekit_bsp` rule in a BUILD.bazel file of your choice and [configure it](rules/setup_sourcekit_bsp.bzl#L77) for your desired setup:

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.4.2"
24+
package let sourcekitBazelBSPVersion = "0.5.0"
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.4.2",
3+
"version": "0.5.0",
44
"bspVersion": "2.2.0",
55
"languages": [
66
"c",

0 commit comments

Comments
 (0)