Skip to content
This repository was archived by the owner on Aug 5, 2024. It is now read-only.

Commit 8274520

Browse files
abrams27Space Team
authored andcommitted
[release] 2.7.0
more readme more changelog [release] 2.7.0 changelog update Merge-request: BAZEL-MR-272 Merged-by: Marcin Abramowicz <[email protected]>
1 parent c3ecf05 commit 8274520

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,22 @@
55

66
## [Unreleased]
77

8+
## [2.7.0]
9+
810
### Features 🎉
911
- Server uses BEP to log bazel progress.
1012
| [ae52b8f](https://github.com/JetBrains/bazel-bsp/commit/ae52b8f401b793ba15e84d492ba0f72a462b74dc)
1113

1214
### Fixes 🛠️
13-
- Add class jars generated during annotation processing
15+
- Add class jars generated during annotation processing.
1416
| [#372](https://github.com/JetBrains/bazel-bsp/pull/372)
15-
- Set PublishDiagnosticsParams.reset to be true
17+
- Set PublishDiagnosticsParams.reset to be true.
1618
| [#377](https://github.com/JetBrains/bazel-bsp/pull/377)
17-
- Update document about how to use projectview
19+
- Update document about how to use projectview.
1820
| [#383](https://github.com/JetBrains/bazel-bsp/pull/383)
21+
- Fixup failed target names from BEP in bazel 6+ in the bloop mode.
22+
| [#402](https://github.com/JetBrains/bazel-bsp/pull/402)
23+
1924

2025
## [2.6.1]
2126

@@ -359,7 +364,9 @@
359364

360365
- Everything... 🎉
361366

362-
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.6.1...HEAD
367+
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.7.0...HEAD
368+
369+
[2.7.0]: https://github.com/JetBrains/bazel-bsp/compare/2.6.1..2.7.0
363370

364371
[2.6.1]: https://github.com/JetBrains/bazel-bsp/compare/2.6.0..2.6.1
365372

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Below is a list of languages supported over Bazel BSP and their implementation s
3333
2. Run in the directory where Bazel BSP should be installed:
3434

3535
```shell
36-
cs launch org.jetbrains.bsp:bazel-bsp:2.6.1 -M org.jetbrains.bsp.bazel.install.Install
36+
cs launch org.jetbrains.bsp:bazel-bsp:2.7.0 -M org.jetbrains.bsp.bazel.install.Install
3737
```
3838

3939
3. Add bsp generated folders to your `.gitignore`: `.bsp` and `.bazelbsp`
@@ -66,7 +66,7 @@ bazel run --stamp --define "maven_repo=file://$HOME/.m2/repository" //server/src
6666
cs launch -r m2Local org.jetbrains.bsp:bazel-bsp:<your version> -M org.jetbrains.bsp.bazel.install.Install
6767
```
6868

69-
### Using Bloop
69+
### Using Bloop (_deprecated!_)
7070

7171
By default Bazel BSP runs as a BSP server and invokes Bazel to compile, test and run targets.
7272
This provides the most accurate build results at the expense of
@@ -95,7 +95,7 @@ For example, using Coursier:
9595

9696
```shell
9797
cd ~/src/my-repository
98-
cs launch org.jetbrains.bsp:bazel-bsp:2.6.1 -M org.jetbrains.bsp.bazel.install.Install \
98+
cs launch org.jetbrains.bsp:bazel-bsp:2.7.0 -M org.jetbrains.bsp.bazel.install.Install \
9999
-- \
100100
--use-bloop \
101101
-t //my-targets/... \

central-sync/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.1
1+
2.7.0

commons/src/main/java/org/jetbrains/bsp/bazel/commons/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class Constants {
77
public static final String NAME = "bazelbsp";
8-
public static final String VERSION = "2.6.1";
8+
public static final String VERSION = "2.7.0";
99
public static final String BSP_VERSION = "2.1.0-M4";
1010
public static final String SCALA = "scala";
1111
public static final String JAVA = "java";

server/src/main/java/org/jetbrains/bsp/bazel/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ load("@bazel_sonatype//:defs.bzl", "sonatype_java_export")
44
sonatype_java_export(
55
name = "bsp",
66
srcs = glob(["*.java"]),
7-
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.6.1",
7+
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.7.0",
88
maven_profile = "org.jetbrains",
99
pom_template = "//:pom.xml",
1010
resources = ["//log4j_config"],

0 commit comments

Comments
 (0)