Skip to content

Commit

Permalink
Update README and CHANGELOG for 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGregory084 committed Jul 14, 2023
1 parent 28c8c76 commit 50f338a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 50f338a

Please sign in to comment.