Skip to content

Commit

Permalink
Release 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGregory084 committed Jun 15, 2022
1 parent 05f7f43 commit 186324d
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 @@ -4,6 +4,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.4]

### Fixed

* [#19](https://github.com/typelevel/typelevel-scalafix/issues/19) - an issue which occurred when traversing empty statement blocks.

## [0.1.3]

### Added
Expand All @@ -26,7 +32,8 @@ and this project adheres to [Early Semantic Versioning](https://docs.scala-lang.

The initial release of this project, containing linting rules to detect `.map(f).sequence` function call chains, and to detect discarded IO expressions.

[Unreleased]: https://github.com/typelevel/typelevel-scalafix/compare/v0.1.3...HEAD
[Unreleased]: https://github.com/typelevel/typelevel-scalafix/compare/v0.1.4...HEAD
[0.1.4]: https://github.com/typelevel/typelevel-scalafix/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/typelevel/typelevel-scalafix/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/typelevel/typelevel-scalafix/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/typelevel/typelevel-scalafix/compare/v0.1.0...v0.1.1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ Then you can add the *typelevel-scalafix* rules to your sbt project using the `s

```scala
// To add all Scalafix rules
ThisBuild / scalafixDependencies += "org.typelevel" %% "typelevel-scalafix" % "0.1.3"
ThisBuild / scalafixDependencies += "org.typelevel" %% "typelevel-scalafix" % "0.1.4"

// To add only cats Scalafix rules
ThisBuild / scalafixDependencies += "org.typelevel" %% "typelevel-scalafix-cats" % "0.1.3"
ThisBuild / scalafixDependencies += "org.typelevel" %% "typelevel-scalafix-cats" % "0.1.4"
// To add only cats-effect Scalafix rules
ThisBuild / scalafixDependencies += "org.typelevel" %% "typelevel-scalafix-cats-effect" % "0.1.3"
ThisBuild / scalafixDependencies += "org.typelevel" %% "typelevel-scalafix-cats-effect" % "0.1.4"
```

## Usage
Expand Down

0 comments on commit 186324d

Please sign in to comment.