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

Commit 8773ecd

Browse files
authored
[release] 1.1.1 (#149)
* changelog update * version bump
1 parent 9ebca73 commit 8773ecd

File tree

5 files changed

+73
-22
lines changed

5 files changed

+73
-22
lines changed

CHANGELOG.md

+68-17
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,93 @@
11
# Changelog
2+
23
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
34

45
## [Unreleased]
6+
7+
...
8+
9+
## [1.1.1] - 15.02.2022
10+
511
### Features 🎉
6-
- New, better project view! Now you can configure installer as well! | [#143](https://github.com/JetBrains/bazel-bsp/pull/143)
12+
13+
- New, better project view! Now you can configure installer as well!
14+
| [#143](https://github.com/JetBrains/bazel-bsp/pull/143)
15+
- Server returns only the relevant output jar rather than 5-6 jars.
16+
| [#136](https://github.com/JetBrains/bazel-bsp/pull/136)
17+
- Server supports multiple subprojects in one workspace (first step).
18+
| [#130](https://github.com/JetBrains/bazel-bsp/pull/130)
19+
- `JvmBuildServer` implementation - now tests execution should be working!
20+
| [#128](https://github.com/JetBrains/bazel-bsp/pull/128)
21+
- Improved heuristics for guessing source roots. It looks directory structures such as `src/java` or `main/java`.
22+
| [#126](https://github.com/JetBrains/bazel-bsp/pull/126)
723

824
### Changes 🔄
9-
- Improved heuristics for guessing source roots. It looks directory structures such as `src/java` or `main/java`. | [#126](https://github.com/JetBrains/bazel-bsp/pull/126)
25+
26+
- Server filters out non-runtime jars for running apps and tests.
27+
| [#131](https://github.com/JetBrains/bazel-bsp/pull/131)
28+
- Now server uses Java 11.
29+
| [#129](https://github.com/JetBrains/bazel-bsp/pull/129)
30+
- Bazel runner allows running a bazel command without positional arguments.
31+
| [#123](https://github.com/JetBrains/bazel-bsp/pull/123)
1032

1133
### Fixes 🛠️
12-
- Error diagnostics are now also sent for source files, including targets. | [#146](https://github.com/JetBrains/bazel-bsp/pull/146)
13-
- Now the project is built using bazel version `3.7.2`, as the rules currently used are no longer supported by bazel. | [#141](https://github.com/JetBrains/bazel-bsp/pull/141)
1434

35+
- Error diagnostics are now also sent for source files, including targets.
36+
| [#146](https://github.com/JetBrains/bazel-bsp/pull/146)
37+
- Badges in the README work now (and there are even more of them).
38+
| [#142](https://github.com/JetBrains/bazel-bsp/pull/142)
39+
- Server builds a project during sync in order to fix dependency resolving mechanism.
40+
| [#137](https://github.com/JetBrains/bazel-bsp/pull/137)
41+
- Server handles aspects properly when multiple projects are in workspace.
42+
| [#132](https://github.com/JetBrains/bazel-bsp/pull/132)
43+
- Now the project is built using bazel version `3.7.2`, as the rules currently used are no longer supported by bazel.
44+
| [#141](https://github.com/JetBrains/bazel-bsp/pull/141)
1545

1646
## [1.0.1] - 24.09.2021
47+
1748
### Features 🎉
18-
- [This](CHANGELOG.md) changelog. | [#97](https://github.com/JetBrains/bazel-bsp/pull/97)
49+
50+
- [This](CHANGELOG.md) changelog.
51+
| [#97](https://github.com/JetBrains/bazel-bsp/pull/97)
1952

2053
### Changes 🔄
21-
- Implementation of e2e tests. Have been moved to the `e2e` module and are now based on execution scenarios. | [#83](https://github.com/JetBrains/bazel-bsp/pull/83)
22-
- Github actions e2e tests execution - e2e tests are executed in parallel. | [#84](https://github.com/JetBrains/bazel-bsp/pull/84)
23-
- Project structure - now it is multi module project. | [#87](https://github.com/JetBrains/bazel-bsp/pull/87)
24-
- Github actions unit tests execution - each module has a separate job. | [#89](https://github.com/JetBrains/bazel-bsp/pull/89)
25-
- Created [document](docs/BUMPVERSION.md) with release tips. | [#91](https://github.com/JetBrains/bazel-bsp/pull/91)
54+
55+
- Implementation of e2e tests. Have been moved to the `e2e` module and are now based on execution scenarios.
56+
| [#83](https://github.com/JetBrains/bazel-bsp/pull/83)
57+
- Github actions e2e tests execution - e2e tests are executed in parallel.
58+
| [#84](https://github.com/JetBrains/bazel-bsp/pull/84)
59+
- Project structure - now it is multi module project.
60+
| [#87](https://github.com/JetBrains/bazel-bsp/pull/87)
61+
- Github actions unit tests execution - each module has a separate job.
62+
| [#89](https://github.com/JetBrains/bazel-bsp/pull/89)
63+
- Created [document](docs/BUMPVERSION.md) with release tips.
64+
| [#91](https://github.com/JetBrains/bazel-bsp/pull/91)
2665

2766
### Removed ✂️
28-
- Old implementation of e2e tests. | [#86](https://github.com/JetBrains/bazel-bsp/pull/86)
67+
68+
- Old implementation of e2e tests.
69+
| [#86](https://github.com/JetBrains/bazel-bsp/pull/86)
2970

3071
### Fixes 🛠️
31-
- Warnings generated by the [WORKSPACE file](WORKSPACE). | [#81](https://github.com/JetBrains/bazel-bsp/pull/81)
32-
- Semantic versioning parser - now it can parse every valid version. | [#93](https://github.com/JetBrains/bazel-bsp/pull/93)
33-
- `exports` attribute propagation to the BSP | [#98](https://github.com/JetBrains/bazel-bsp/pull/98)
34-
- Now all `scala_junit_test` based rules (including `scala_specs2_junit_test`) are included in the BSP tests, unfortunately without test classes. | [#101](https://github.com/JetBrains/bazel-bsp/pull/101)
72+
73+
- Warnings generated by the [WORKSPACE file](WORKSPACE).
74+
| [#81](https://github.com/JetBrains/bazel-bsp/pull/81)
75+
- Semantic versioning parser - now it can parse every valid version.
76+
| [#93](https://github.com/JetBrains/bazel-bsp/pull/93)
77+
- `exports` attribute propagation to the BSP
78+
| [#98](https://github.com/JetBrains/bazel-bsp/pull/98)
79+
- Now all `scala_junit_test` based rules (including `scala_specs2_junit_test`) are included in the BSP tests,
80+
unfortunately without test classes.
81+
| [#101](https://github.com/JetBrains/bazel-bsp/pull/101)
3582

3683
## [1.0.0] - 23.08.2021
37-
- Everything...
3884

85+
- Everything... 🎉
86+
87+
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/1.1.1...HEAD
88+
89+
[1.1.1]: https://github.com/JetBrains/bazel-bsp/compare/1.0.1...1.1.1
3990

40-
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/1.0.1...HEAD
4191
[1.0.1]: https://github.com/JetBrains/bazel-bsp/compare/1.0.0...1.0.1
92+
4293
[1.0.0]: https://github.com/JetBrains/bazel-bsp/releases/tag/1.0.0

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Below is a list of languages supported over Bazel BSP and their implementation s
2828
1. Have [coursier](https://get-coursier.io/docs/cli-installation) installed
2929
2. Run in the directory where Bazel BSP should be installed:
3030
```
31-
cs launch org.jetbrains.bsp:bazel-bsp:1.0.1 -M org.jetbrains.bsp.bazel.install.Install
31+
cs launch org.jetbrains.bsp:bazel-bsp:1.1.1 -M org.jetbrains.bsp.bazel.install.Install
3232
```
3333
3. Add bsp generated folders to your `.gitignore`: `.bsp` and `.bazelbsp`
3434

@@ -41,7 +41,7 @@ Might be useful during development
4141
#### Using coursier
4242
1. Have [coursier](https://get-coursier.io/docs/cli-installation) installed
4343
2. Be inside this project
44-
3. Change project version - `maven_coordinates` attribute in the `server/src/main/java/org/jetbrains/bsp/bazel/BUILD` file
44+
3. **Change** the project version - `maven_coordinates` attribute in the `server/src/main/java/org/jetbrains/bsp/bazel/BUILD` file
4545
4. Publish a new version:
4646
```
4747
bazel run --stamp --define "maven_repo=file://$HOME/.m2/repository" //server/src/main/java/org/jetbrains/bsp/bazel:bsp.publish

central-sync/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.1
1+
1.1.1

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class Constants {
99

1010
public static final String NAME = "bazelbsp";
11-
public static final String VERSION = "1.0.1";
11+
public static final String VERSION = "1.1.1";
1212
public static final String BSP_VERSION = "2.0.0";
1313

1414
public static final String SCALA = "scala";

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:1.0.1",
7+
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:1.1.1",
88
maven_profile = "org.jetbrains",
99
pom_template = "//:pom.xml",
1010
resources = ["//server/src/main/resources"],

0 commit comments

Comments
 (0)