Skip to content

Commit

Permalink
Update the CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGregory084 committed Jun 6, 2022
1 parent ccc55c1 commit 70b1c9e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ 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 [Early Semantic Versioning](https://docs.scala-lang.org/overviews/core/binary-compatibility-for-library-authors.html#recommended-versioning-scheme) in addition to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

* Support for the [SIP-22](https://docs.scala-lang.org/sips/async.html) `-Xasync` option was added to the `ScalacOptions` DSL.
* Support for the `-Ybackend-parallelism` option was added to the `ScalacOptions` DSL. This option can be used to enable scalac to emit class files in parallel.
* Support for the `-release` option was added to the `ScalacOptions` DSL. This option can be used to compile for a specific version of the Java platform.

### Fixed

* [#74](https://github.com/typelevel/sbt-tpolecat/issues/74) - a bug in filtering of multiple-argument options. This filtering was broken in the attempt to fix [#60](https://github.com/DavidGregory084/sbt-tpolecat/issues/60). Unfortunately this means that if users append to `ThisBuild / scalacOptions`, those appended options will no longer be inherited by other configurations, e.g. `Test / scalacOptions`.
* [#78](https://github.com/typelevel/sbt-tpolecat/issues/78) - a bug where options were not filtered out of `Test / scalacOptions` as expected. This had the same underlying cause as [#74](https://github.com/typelevel/sbt-tpolecat/issues/74).
* [#77](https://github.com/typelevel/sbt-tpolecat/issues/77) - the JDK version was not being set as expected by the setup-scala action. Resolved by switching to setup-java instead.

## [0.3.1] - 2022-04-25

### Changed
Expand Down

0 comments on commit 70b1c9e

Please sign in to comment.