Skip to content

Commit

Permalink
[release] 2.7.0
Browse files Browse the repository at this point in the history
more readme

more changelog

[release] 2.7.0

changelog update

Merge-request: BAZEL-MR-272
Merged-by: Marcin Abramowicz <marcin.abramowicz@jetbrains.com>
  • Loading branch information
abrams27 authored and Space Team committed May 23, 2023
1 parent c3ecf05 commit 8274520
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Expand Up @@ -5,17 +5,22 @@

## [Unreleased]

## [2.7.0]

### Features 🎉
- Server uses BEP to log bazel progress.
| [ae52b8f](https://github.com/JetBrains/bazel-bsp/commit/ae52b8f401b793ba15e84d492ba0f72a462b74dc)

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


## [2.6.1]

Expand Down Expand Up @@ -359,7 +364,9 @@

- Everything... 🎉

[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.6.1...HEAD
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.7.0...HEAD

[2.7.0]: https://github.com/JetBrains/bazel-bsp/compare/2.6.1..2.7.0

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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -33,7 +33,7 @@ Below is a list of languages supported over Bazel BSP and their implementation s
2. Run in the directory where Bazel BSP should be installed:

```shell
cs launch org.jetbrains.bsp:bazel-bsp:2.6.1 -M org.jetbrains.bsp.bazel.install.Install
cs launch org.jetbrains.bsp:bazel-bsp:2.7.0 -M org.jetbrains.bsp.bazel.install.Install
```

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

### Using Bloop
### Using Bloop (_deprecated!_)

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

```shell
cd ~/src/my-repository
cs launch org.jetbrains.bsp:bazel-bsp:2.6.1 -M org.jetbrains.bsp.bazel.install.Install \
cs launch org.jetbrains.bsp:bazel-bsp:2.7.0 -M org.jetbrains.bsp.bazel.install.Install \
-- \
--use-bloop \
-t //my-targets/... \
Expand Down
2 changes: 1 addition & 1 deletion central-sync/VERSION
@@ -1 +1 @@
2.6.1
2.7.0
Expand Up @@ -5,7 +5,7 @@

public class Constants {
public static final String NAME = "bazelbsp";
public static final String VERSION = "2.6.1";
public static final String VERSION = "2.7.0";
public static final String BSP_VERSION = "2.1.0-M4";
public static final String SCALA = "scala";
public static final String JAVA = "java";
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/java/org/jetbrains/bsp/bazel/BUILD
Expand Up @@ -4,7 +4,7 @@ load("@bazel_sonatype//:defs.bzl", "sonatype_java_export")
sonatype_java_export(
name = "bsp",
srcs = glob(["*.java"]),
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.6.1",
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.7.0",
maven_profile = "org.jetbrains",
pom_template = "//:pom.xml",
resources = ["//log4j_config"],
Expand Down

0 comments on commit 8274520

Please sign in to comment.