diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f14a1..c67d760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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). +## [0.1.2] - 2023-07-14 + +### Added + +- All relevant changes to `ScalacOptions` in [sbt-tpolecat](https://github.com/typelevel/sbt-tpolecat) since the previous release were added to the library, specifically: + - [#115](https://github.com/typelevel/sbt-tpolecat/pull/115), which added the `-Wnonunit-statement` option. + - [#127](https://github.com/typelevel/sbt-tpolecat/pull/127), which added verbose options to the plugin. + - [#147](https://github.com/typelevel/sbt-tpolecat/pull/147), which added warnings which were reintroduced in Scala 3.3.x. + ## [0.1.1] - 2022-08-04 ### Fixed @@ -18,6 +27,7 @@ and this project adheres to [Early Semantic Versioning](https://docs.scala-lang. - Begin keeping this [CHANGELOG](./CHANGELOG.md). - Initial release of this library using code extracted from [sbt-tpolecat](https://github.com/typelevel/sbt-tpolecat). -[Unreleased]: https://github.com/typelevel/scalac-options/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/typelevel/scalac-options/compare/v0.1.2...HEAD +[0.1.2]: https://github.com/typelevel/scalac-options/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/typelevel/scalac-options/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/typelevel/scalac-options/releases/tag/v0.1.0 diff --git a/README.md b/README.md index 6c4d497..a29d0ab 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ This library is published for Scala 2.12.x, 2.13.x and 3.1.x: ```scala // sbt -"org.typelevel" %% "scalac-options" % "0.1.1" +"org.typelevel" %% "scalac-options" % "0.1.2" // mill -ivy"org.typelevel::scalac-options:0.1.1" +ivy"org.typelevel::scalac-options:0.1.2" // Scala CLI -//> using lib "org.typelevel::scalac-options:0.1.1" +//> using lib "org.typelevel::scalac-options:0.1.2" ``` This library offers functions for filtering proposed Scala compiler options according to Scala version: