Skip to content

Commit

Permalink
Removed deprecated util.time module (#425)
Browse files Browse the repository at this point in the history
* Removed deprecated `util.time` module

* Add MiMa exclusions
  • Loading branch information
fthomas committed Jan 31, 2018
1 parent 00a0e8f commit 4af0556
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 32 deletions.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,9 @@ lazy val moduleJvmSettings = Def.settings(
import com.typesafe.tools.mima.core._
Seq(
ProblemFilters.exclude[ReversedMissingMethodProblem](
"eu.timepit.refined.scalacheck.StringInstances.nonEmptyStringArbitrary")
"eu.timepit.refined.scalacheck.StringInstances.nonEmptyStringArbitrary"),
ProblemFilters.exclude[MissingClassProblem]("eu.timepit.refined.util.time$"),
ProblemFilters.exclude[MissingClassProblem]("eu.timepit.refined.util.time")
)
}
)
Expand Down

This file was deleted.

4 changes: 4 additions & 0 deletions notes/0.9.0.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@

### Changes

* Removed deprecated `util.time` module which has been replaced by
the `types.time` module. ([#425][#425])

### Bug fixes

### Updates

[#415]: https://github.com/fthomas/refined/pull/415
[#425]: https://github.com/fthomas/refined/pull/425

0 comments on commit 4af0556

Please sign in to comment.