Skip to content

Commit

Permalink
[release] 2.5.0 (#325)
Browse files Browse the repository at this point in the history
* version bump

* changelog update
  • Loading branch information
abrams27 committed Jan 27, 2023
1 parent a18959b commit 2c13272
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Expand Up @@ -5,11 +5,16 @@

## [Unreleased]

## [2.5.0] - 27.01.2023

### Features 🎉

- Add mainClasses parameters to JvmEnvironmentItem
- Add mainClasses parameters to `JvmEnvironmentItem`.
| [#309](https://github.com/JetBrains/bazel-bsp/pull/309)

- Exclude bazel-* symlinks; `outputPaths` endpoint implemented.
| [#322](https://github.com/JetBrains/bazel-bsp/pull/322)

## [2.4.0] - 2.01.2023

### Features 🎉
Expand Down Expand Up @@ -298,7 +303,9 @@

- Everything... 🎉

[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.4.0...HEAD
[Unreleased]: https://github.com/JetBrains/bazel-bsp/compare/2.5.0...HEAD

[2.5.0]: https://github.com/JetBrains/bazel-bsp/compare/2.4.0..2.5.0

[2.4.0]: https://github.com/JetBrains/bazel-bsp/compare/2.3.1...2.4.0

Expand Down
4 changes: 2 additions & 2 deletions README.md
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:

```shell
cs launch org.jetbrains.bsp:bazel-bsp:2.4.0 -M org.jetbrains.bsp.bazel.install.Install
cs launch org.jetbrains.bsp:bazel-bsp:2.5.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.4.0 -M org.jetbrains.bsp.bazel.install.Install \
cs launch org.jetbrains.bsp:bazel-bsp:2.5.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.4.0
2.5.0
Expand Up @@ -5,7 +5,7 @@

public class Constants {
public static final String NAME = "bazelbsp";
public static final String VERSION = "2.4.0";
public static final String VERSION = "2.5.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
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.4.0",
maven_coordinates = "org.jetbrains.bsp:bazel-bsp:2.5.0",
maven_profile = "org.jetbrains",
pom_template = "//:pom.xml",
resources = ["//log4j_config"],
Expand Down

0 comments on commit 2c13272

Please sign in to comment.