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

Commit 72cd6b7

Browse files
lukaszwawrzykŁukasz Wawrzyk
and
Łukasz Wawrzyk
authored
[release] 2.2.0 (#280)
Co-authored-by: Łukasz Wawrzyk <[email protected]>
1 parent 872bd7d commit 72cd6b7

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@
22
# Changelog
33

44
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
5-
65
## [Unreleased]
76

87
### Features 🎉
98

9+
### Changes 🔄
10+
11+
### Fixes 🛠️
12+
13+
14+
## [2.2.0] - 27.07.2022
15+
16+
### Features 🎉
17+
1018
- Server can be used with bloop (`--use_bloop` flag).
1119
| [#246](https://github.com/JetBrains/bazel-bsp/pull/246)
1220
- Project view supports `build_manual_targets` - now it is possible to build targets with `manual` tag.
@@ -232,7 +240,9 @@
232240

233241
- Everything... 🎉
234242

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
236246

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

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Below is a list of languages supported over Bazel BSP and their implementation s
3232
2. Run in the directory where Bazel BSP should be installed:
3333

3434
```
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
3636
```
3737

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

9595
```shell
9696
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 \
9898
--use_bloop \
9999
-t //my-targets/... \
100100
-d ~/bazel-bsp-projects/my-targets-project

central-sync/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.0
1+
2.2.0

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

+1-1
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.1.0";
8+
public static final String VERSION = "2.2.0";
99
public static final String BSP_VERSION = "2.0.0";
1010
public static final String SCALA = "scala";
1111
public static final String JAVA = "java";

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

+1-1
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.1.0",
7+
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.2.0",
88
maven_profile = "org.jetbrains",
99
pom_template = "//:pom.xml",
1010
resources = ["//log4j_config"],

0 commit comments

Comments
 (0)