Skip to content

Commit

Permalink
Update README and CHANGELOG for 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGregory084 committed Jul 18, 2023
1 parent 10c7a4e commit e6c1833
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.3] - 2023-07-18

### Fixed

- [#63](https://github.com/typelevel/scalac-options/pull/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
Expand All @@ -27,7 +33,8 @@ 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.2...HEAD
[Unreleased]: https://github.com/typelevel/scalac-options/compare/v0.1.3...HEAD
[0.1.3]: https://github.com/typelevel/scalac-options/compare/v0.1.2...v0.1.3
[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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,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.2"
"org.typelevel" %% "scalac-options" % "0.1.3"

// mill
ivy"org.typelevel::scalac-options:0.1.2"
ivy"org.typelevel::scalac-options:0.1.3"

// Scala CLI
//> using lib "org.typelevel::scalac-options:0.1.2"
//> using lib "org.typelevel::scalac-options:0.1.3"
```

This library offers functions for filtering proposed Scala compiler options according to Scala version:
Expand Down

0 comments on commit e6c1833

Please sign in to comment.