Skip to content

Commit 1bc72c4

Browse files
committed
Bump to 0.4.0
1 parent b5a777e commit 1bc72c4

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.3.0")
1+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.4.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.3.0",
3+
version = "0.4.0",
44
compatibility_level = 0,
55
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The next step is to integrate sourcekit-bazel-bsp with your project:
4040
- Add the following to your `MODULE.bazel` file:
4141

4242
```python
43-
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.3.0", repo_name = "sourcekit_bazel_bsp")
43+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.4.0", repo_name = "sourcekit_bazel_bsp")
4444
```
4545

4646
- Define a `setup_sourcekit_bsp` rule in a BUILD.bazel file in the root of your workspace and [configure it](rules/setup_sourcekit_bsp.bzl#L48) 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.3.0"
24+
package let sourcekitBazelBSPVersion = "0.4.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.3.0",
3+
"version": "0.4.0",
44
"bspVersion": "2.2.0",
55
"languages": [
66
"c",

0 commit comments

Comments
 (0)