Skip to content

Commit

Permalink
Bump sbt to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Heiko Seeberger committed Apr 26, 2021
1 parent 601a5da commit c17240d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.5.0
sbt.version = 1.5.1
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ object FreshPlugin extends AutoPlugin {

def setting[A](key: SettingKey[A]) = Project.extract(state).get(key)

val buildDir = setting(Keys.baseDirectory.in(ThisBuild)).toPath
val buildDir = setting(ThisBuild / Keys.baseDirectory).toPath
val organization = args.organization.getOrElse(setting(freshOrganization))
val name = args.name.getOrElse(setting(freshName))
val author = args.author.getOrElse(setting(freshAuthor))
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/de/heikoseeberger/sbtfresh/Template.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private object Template {
private val year = now().getYear

def buildProperties: String =
"""|sbt.version = 1.5.0
"""|sbt.version = 1.5.1
|""".stripMargin

def buildSbt(
Expand Down

0 comments on commit c17240d

Please sign in to comment.