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

Commit

Permalink
[release] 2.2.0 (#280)
Browse files Browse the repository at this point in the history
Co-authored-by: Łukasz Wawrzyk <[email protected]>
  • Loading branch information
lukaszwawrzyk and Łukasz Wawrzyk authored Jul 26, 2022
1 parent 872bd7d commit 72cd6b7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@
# Changelog

<!-- Keep a Changelog guide -> https://keepachangelog.com -->

## [Unreleased]

### Features 🎉

### Changes 🔄

### Fixes 🛠️


## [2.2.0] - 27.07.2022

### Features 🎉

- Server can be used with bloop (`--use_bloop` flag).
| [#246](https://github.com/JetBrains/bazel-bsp/pull/246)
- Project view supports `build_manual_targets` - now it is possible to build targets with `manual` tag.
Expand Down Expand Up @@ -232,7 +240,9 @@

- Everything... 🎉

[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.1.0...HEAD
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.2.0...HEAD

[2.2.0]: https://github.com/JetBrains/bazel-bsp/compare/2.1.0...2.2.0

[2.1.0]: https://github.com/JetBrains/bazel-bsp/compare/2.0.0...2.1.0

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,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:

```
cs launch org.jetbrains.bsp:bazel-bsp:2.1.0 -M org.jetbrains.bsp.bazel.install.Install
cs launch org.jetbrains.bsp:bazel-bsp:2.2.0 -M org.jetbrains.bsp.bazel.install.Install
```

3. Add bsp generated folders to your `.gitignore`: `.bsp` and `.bazelbsp`
Expand Down Expand Up @@ -94,7 +94,7 @@ For example, using Coursier:

```shell
cd ~/src/my-repository
cs launch org.jetbrains.bsp:bazel-bsp:2.1.0 -M org.jetbrains.bsp.bazel.install.Install \
cs launch org.jetbrains.bsp:bazel-bsp:2.2.0 -M org.jetbrains.bsp.bazel.install.Install \
--use_bloop \
-t //my-targets/... \
-d ~/bazel-bsp-projects/my-targets-project
Expand Down
2 changes: 1 addition & 1 deletion central-sync/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.2.0
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.1.0";
public static final String VERSION = "2.2.0";
public static final String BSP_VERSION = "2.0.0";
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.1.0",
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.2.0",
maven_profile = "org.jetbrains",
pom_template = "//:pom.xml",
resources = ["//log4j_config"],
Expand Down

0 comments on commit 72cd6b7

Please sign in to comment.