diff --git a/CHANGELOG.md b/CHANGELOG.md index c27c97189..3e795becb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,19 @@ # Changelog - ## [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. @@ -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 diff --git a/README.md b/README.md index c4007fb4c..833743b96 100644 --- a/README.md +++ b/README.md @@ -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` @@ -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 diff --git a/central-sync/VERSION b/central-sync/VERSION index 7ec1d6db4..ccbccc3dc 100644 --- a/central-sync/VERSION +++ b/central-sync/VERSION @@ -1 +1 @@ -2.1.0 +2.2.0 diff --git a/commons/src/main/java/org/jetbrains/bsp/bazel/commons/Constants.java b/commons/src/main/java/org/jetbrains/bsp/bazel/commons/Constants.java index 372e314c0..8051713a3 100644 --- a/commons/src/main/java/org/jetbrains/bsp/bazel/commons/Constants.java +++ b/commons/src/main/java/org/jetbrains/bsp/bazel/commons/Constants.java @@ -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"; diff --git a/server/src/main/java/org/jetbrains/bsp/bazel/BUILD b/server/src/main/java/org/jetbrains/bsp/bazel/BUILD index ef30363dd..b9b6ca3cb 100644 --- a/server/src/main/java/org/jetbrains/bsp/bazel/BUILD +++ b/server/src/main/java/org/jetbrains/bsp/bazel/BUILD @@ -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"],