Skip to content

Commit

Permalink
include scala 2.10 in minVer filter
Browse files Browse the repository at this point in the history
  • Loading branch information
MasseGuillaume committed Jan 30, 2017
1 parent 988a7be commit 3d66d76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class DataRepository(github: Github)(private implicit val ec: ExecutionContext)

def scalaVersions(params: SearchParams = SearchParams()): Future[List[(String, Long)]] = {
val minVer = SemanticVersion(2, 10)
versionAggregations("scalaVersion", params, _ > minVer)
versionAggregations("scalaVersion", params, _ >= minVer)
.map(addParamsIfMissing(params.scalaVersions))
}

Expand Down

0 comments on commit 3d66d76

Please sign in to comment.