Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 2.17 KB

CHANGELOG.md

File metadata and controls

40 lines (25 loc) · 2.17 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Early Semantic Versioning in addition to Semantic Versioning.

0.1.3 - 2023-07-18

Fixed

  • #63 Fix the version range for -Wunused:nowarn, which was backported to Scala 2.12.13, but under a different option name. This change prevents -Wunused:nowarn from being added incorrectly on Scala 2.12.x, and adds the new -Ywarn-unused:nowarn option for Scala 2.12.13 and above instead.

0.1.2 - 2023-07-14

Added

  • All relevant changes to ScalacOptions in sbt-tpolecat since the previous release were added to the library, specifically:
    • #115, which added the -Wnonunit-statement option.
    • #127, which added verbose options to the plugin.
    • #147, which added warnings which were reintroduced in Scala 3.3.x.

0.1.1 - 2022-08-04

Fixed

  • Added a singleton object ScalacOptions to enable access to the scala compiler options DSL. The previous code was imported directly from sbt-tpolecat and the ScalacOptions trait was package-private, making the library quite difficult to use!

0.1.0 - 2022-08-03

Added