Skip to content

Commit e6c1833

Browse files
Update README and CHANGELOG for 0.1.3
1 parent 10c7a4e commit e6c1833

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
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).
77

8+
## [0.1.3] - 2023-07-18
9+
10+
### Fixed
11+
12+
- [#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.
13+
814
## [0.1.2] - 2023-07-14
915

1016
### Added
@@ -27,7 +33,8 @@ and this project adheres to [Early Semantic Versioning](https://docs.scala-lang.
2733
- Begin keeping this [CHANGELOG](./CHANGELOG.md).
2834
- Initial release of this library using code extracted from [sbt-tpolecat](https://github.com/typelevel/sbt-tpolecat).
2935

30-
[Unreleased]: https://github.com/typelevel/scalac-options/compare/v0.1.2...HEAD
36+
[Unreleased]: https://github.com/typelevel/scalac-options/compare/v0.1.3...HEAD
37+
[0.1.3]: https://github.com/typelevel/scalac-options/compare/v0.1.2...v0.1.3
3138
[0.1.2]: https://github.com/typelevel/scalac-options/compare/v0.1.1...v0.1.2
3239
[0.1.1]: https://github.com/typelevel/scalac-options/compare/v0.1.0...v0.1.1
3340
[0.1.0]: https://github.com/typelevel/scalac-options/releases/tag/v0.1.0

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ This library is published for Scala 2.12.x, 2.13.x and 3.1.x:
1515

1616
```scala
1717
// sbt
18-
"org.typelevel" %% "scalac-options" % "0.1.2"
18+
"org.typelevel" %% "scalac-options" % "0.1.3"
1919

2020
// mill
21-
ivy"org.typelevel::scalac-options:0.1.2"
21+
ivy"org.typelevel::scalac-options:0.1.3"
2222

2323
// Scala CLI
24-
//> using lib "org.typelevel::scalac-options:0.1.2"
24+
//> using lib "org.typelevel::scalac-options:0.1.3"
2525
```
2626

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

0 commit comments

Comments
 (0)