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

Commit

Permalink
[release] 2.7.2
Browse files Browse the repository at this point in the history
Merge-request: BAZEL-MR-300
Merged-by: Marcin Abramowicz <marcin.abramowicz@jetbrains.com>
  • Loading branch information
abrams27 authored and qodana-bot committed Jun 19, 2023
1 parent 73b5bcc commit 22b4c01
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

## [Unreleased]


## [2.7.2]

### Fixes 🛠️
- Collect scalac options from the toolchain
| [#433](https://github.com/JetBrains/bazel-bsp/pull/433)
Expand Down Expand Up @@ -386,7 +389,9 @@

- Everything... 🎉

[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.7.1...HEAD
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.7.2...HEAD

[2.7.2]: https://github.com/JetBrains/bazel-bsp/compare/2.7.1..2.7.2

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
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.7.1 -M org.jetbrains.bsp.bazel.install.Install
cs launch org.jetbrains.bsp:bazel-bsp:2.7.2 -M org.jetbrains.bsp.bazel.install.Install
```

3. Add bsp generated folders to your `.gitignore`: `.bsp` and `.bazelbsp`
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.7.1 -M org.jetbrains.bsp.bazel.install.Install \
cs launch org.jetbrains.bsp:bazel-bsp:2.7.2 -M org.jetbrains.bsp.bazel.install.Install \
-- \
--use-bloop \
-t //my-targets/... \
Expand Down
2 changes: 1 addition & 1 deletion central-sync/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.1
2.7.2
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class Constants {
public static final String NAME = "bazelbsp";
public static final String VERSION = "2.7.1";
public static final String VERSION = "2.7.2";
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
Original file line number Diff line number Diff line change
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.7.1",
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.7.2",
maven_profile = "org.jetbrains",
pom_template = "//:pom.xml",
resources = ["//log4j_config"],
Expand Down

0 comments on commit 22b4c01

Please sign in to comment.