Skip to content

Commit

Permalink
build: Bump to 0.2.0 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo authored Jun 12, 2024
1 parent 7550bfb commit f60f90c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0
## What's Changed
* enhancement - Populate more JavacOptionsResult info by @Arthurm1 in [#105](https://github.com/microsoft/build-server-for-gradle/pull/105)
* enhancement - Implement buildTargetCleanCache by @Arthurm1 in [#110](https://github.com/microsoft/build-server-for-gradle/pull/110)
* enhancement - Populate buildTarget/displayName by @Arthurm1 in [#106](https://github.com/microsoft/build-server-for-gradle/pull/106)
* enhancement - Populate java compiler args by @Arthurm1 in [#109](https://github.com/microsoft/build-server-for-gradle/pull/109)
* enhancement - Support buildTarget/dependencySources by @Arthurm1 in [#130](https://github.com/microsoft/build-server-for-gradle/pull/130)
* enhancement - Add Scala support by @Arthurm1 in [#113](https://github.com/microsoft/build-server-for-gradle/pull/113)
* fix - Put NOTICE.txt into META-INF folder of the output jar by @jdneo in [#103](https://github.com/microsoft/build-server-for-gradle/pull/103)
* fix - Check Gradle version for Java 21 by @jdneo in [#111](https://github.com/microsoft/build-server-for-gradle/pull/111)
* fix - Populate test tag correctly for all sourcesets by @Arthurm1 in [#108](https://github.com/microsoft/build-server-for-gradle/pull/108)
* fix - Handle different project dependency configs by @Arthurm1 in [#107](https://github.com/microsoft/build-server-for-gradle/pull/107)
* fix - Change display name format by @Arthurm1 in [#123](https://github.com/microsoft/build-server-for-gradle/pull/123)
* fix - Remove the fallback Gradle version by @jdneo in [#137](https://github.com/microsoft/build-server-for-gradle/pull/137)
* fix - Ignore compilation on empty build targets by @Arthurm1 in [#133](https://github.com/microsoft/build-server-for-gradle/pull/133)
* fix - Remove Comment generated by the 'init' task by @donat in [#138](https://github.com/microsoft/build-server-for-gradle/pull/138)
* refactor - Support multiple languages. by @jdneo in [#125](https://github.com/microsoft/build-server-for-gradle/pull/125)
* refactor - Shift sourceset population out of buildInitialize by @Arthurm1 in [#135](https://github.com/microsoft/build-server-for-gradle/pull/135)
* refactor - Add more error reporting for getGradleSourceSets failure by @Arthurm1 in [#139](https://github.com/microsoft/build-server-for-gradle/pull/139)
* refactor - Handle progress reports better by @Arthurm1 in [#116](https://github.com/microsoft/build-server-for-gradle/pull/116)
* dependencies - Update project to use Gradle 8.7 by @Arthurm1 in [#134](https://github.com/microsoft/build-server-for-gradle/pull/134)
* dependencies - Update Gradle tooling API to 8.7 by @Arthurm1 in [#146](https://github.com/microsoft/build-server-for-gradle/pull/146)
* test - Add message checking to integration tests by @Arthurm1 in [#136](https://github.com/microsoft/build-server-for-gradle/pull/136)
* test - Auto download toolchain in test project by @Arthurm1 in [#143](https://github.com/microsoft/build-server-for-gradle/pull/143)

## New Contributors
* @Arthurm1 made their first contribution in https://github.com/microsoft/build-server-for-gradle/pull/105
* @donat made their first contribution in https://github.com/microsoft/build-server-for-gradle/pull/138

**Full Changelog**: https://github.com/microsoft/build-server-for-gradle/compare/0.1.2...0.2.0

## 0.1.2
### Fixed
- Plugin with id not found. [PR#98](https://github.com/microsoft/build-server-for-gradle/pull/98)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Constants {
/**
* The version of the build server.
*/
public static final String SERVER_VERSION = "0.1.2";
public static final String SERVER_VERSION = "0.2.0";
/**
* The version of the BSP specification.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public GradleSourceSets getGradleSourceSets(URI projectUri, BuildClient client)
summary += "\n" + errorOut;
}
reporter.sendError(summary);
throw new IllegalStateException("Error retrieving sourcesets \n" + summary, e);
throw new IllegalStateException(e);
}
}

Expand Down

0 comments on commit f60f90c

Please sign in to comment.