Skip to content

Commit ff8e660

Browse files
committed
Bump BSP
1 parent f59a686 commit ff8e660

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.bsp/config.json

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.1.0",
3+
"version": "0.1.1",
44
"bspVersion": "2.2.0",
55
"languages": [
66
"c",

Example/.bsp/config.json

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.1.0",
3+
"version": "0.1.1",
44
"bspVersion": "2.2.0",
55
"languages": [
66
"c",

MODULE.bazel

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The next step is to integrate sourcekit-bazel-bsp with your project. There are c
4747
- Add the following to your `MODULE.bazel` file:
4848

4949
```python
50-
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.1.0", repo_name = "sourcekit_bazel_bsp")
50+
bazel_dep(name = "sourcekit_bazel_bsp", version = "0.1.1", repo_name = "sourcekit_bazel_bsp")
5151
```
5252

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

0 commit comments

Comments
 (0)