This repository was archived by the owner on Aug 5, 2024. It is now read-only.
File tree 5 files changed +17
-7
lines changed
commons/src/main/java/org/jetbrains/bsp/bazel/commons
server/src/main/java/org/jetbrains/bsp/bazel
5 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 2
2
# Changelog
3
3
4
4
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
5
-
6
5
## [ Unreleased]
7
6
8
7
### Features 🎉
9
8
9
+ ### Changes 🔄
10
+
11
+ ### Fixes 🛠️
12
+
13
+
14
+ ## [ 2.2.0] - 27.07.2022
15
+
16
+ ### Features 🎉
17
+
10
18
- Server can be used with bloop (` --use_bloop ` flag).
11
19
| [ #246 ] ( https://github.com/JetBrains/bazel-bsp/pull/246 )
12
20
- Project view supports ` build_manual_targets ` - now it is possible to build targets with ` manual ` tag.
232
240
233
241
- Everything... 🎉
234
242
235
- [ Unreleased ] : https://github.com/JetBrains/bazel-bsp/compare/2.1.0...HEAD
243
+ [ Unreleased ] : https://github.com/JetBrains/bazel-bsp/compare/2.2.0...HEAD
244
+
245
+ [ 2.2.0 ] : https://github.com/JetBrains/bazel-bsp/compare/2.1.0...2.2.0
236
246
237
247
[ 2.1.0 ] : https://github.com/JetBrains/bazel-bsp/compare/2.0.0...2.1.0
238
248
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Below is a list of languages supported over Bazel BSP and their implementation s
32
32
2 . Run in the directory where Bazel BSP should be installed:
33
33
34
34
```
35
- cs launch org.jetbrains.bsp:bazel-bsp:2.1 .0 -M org.jetbrains.bsp.bazel.install.Install
35
+ cs launch org.jetbrains.bsp:bazel-bsp:2.2 .0 -M org.jetbrains.bsp.bazel.install.Install
36
36
```
37
37
38
38
3 . Add bsp generated folders to your ` .gitignore ` : ` .bsp ` and ` .bazelbsp `
@@ -94,7 +94,7 @@ For example, using Coursier:
94
94
95
95
``` shell
96
96
cd ~ /src/my-repository
97
- cs launch org.jetbrains.bsp:bazel-bsp:2.1 .0 -M org.jetbrains.bsp.bazel.install.Install \
97
+ cs launch org.jetbrains.bsp:bazel-bsp:2.2 .0 -M org.jetbrains.bsp.bazel.install.Install \
98
98
--use_bloop \
99
99
-t //my-targets/... \
100
100
-d ~ /bazel-bsp-projects/my-targets-project
Original file line number Diff line number Diff line change 1
- 2.1 .0
1
+ 2.2 .0
Original file line number Diff line number Diff line change 5
5
6
6
public class Constants {
7
7
public static final String NAME = "bazelbsp" ;
8
- public static final String VERSION = "2.1 .0" ;
8
+ public static final String VERSION = "2.2 .0" ;
9
9
public static final String BSP_VERSION = "2.0.0" ;
10
10
public static final String SCALA = "scala" ;
11
11
public static final String JAVA = "java" ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ load("@bazel_sonatype//:defs.bzl", "sonatype_java_export")
4
4
sonatype_java_export (
5
5
name = "bsp" ,
6
6
srcs = glob (["*.java" ]),
7
- maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.1 .0" ,
7
+ maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.2 .0" ,
8
8
maven_profile = "org.jetbrains" ,
9
9
pom_template = "//:pom.xml" ,
10
10
resources = ["//log4j_config" ],
You can’t perform that action at this time.
0 commit comments