Skip to content

Commit

Permalink
Merge pull request #173 from Kevin-Lee/prepare-to-release
Browse files Browse the repository at this point in the history
maven2sbt v1.1.0
  • Loading branch information
kevin-lee authored Dec 28, 2020
2 parents 789c85e + 41def31 commit 8613e95
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
12 changes: 12 additions & 0 deletions changelogs/1.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## [1.1.0](https://github.com/Kevin-Lee/maven2sbt/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+milestone%3Amilestone6) - 2020-12-29

### Done
* Add props name param (`--props-name`) (#167)

### Fixed
* Fix - possible reserved sbt words used as property names (e.g. `scalaVersion`, `version`, etc.) (#147)
* Fixed missing id and name handling for a repository (#148)
* Fix - Handle properties in properties, dependencies and repositories properly (#149)
* `ExclusionRule` is set with the incorrect named parameter (#158)
* String interpolation is broken (#168)
* Some `String` values are not rendered with props properly (#170)
3 changes: 1 addition & 2 deletions project/SbtProjectInfo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ import wartremover.WartRemover.autoImport.{Wart, Warts}
object SbtProjectInfo {
final case class ProjectName(projectName: String) extends AnyVal

val ProjectVersion: String = "1.0.0"
val ProjectVersion: String = "1.1.0"

def commonWarts(scalaBinaryVersion: String): Seq[wartremover.Wart] = scalaBinaryVersion match {
case "2.10" =>
Seq.empty
case _ =>
// Warts.all
Warts.allBut(Wart.ImplicitConversion, Wart.ImplicitParameter)
}

Expand Down

0 comments on commit 8613e95

Please sign in to comment.