Skip to content

Releases: sbt/sbt-nocomma

0.1.2

07 Oct 04:26
v0.1.2
448aa0e
Compare
Choose a tag to compare

sbt-nocomma 0.1.2 is cross published to:

sbt Version Published
1.x
2.0.0-M2

sbt 2.x migration

behind the scene

Full Changelog: v0.1.1...v0.1.2

0.1.1

05 Nov 03:32
v0.1.1
Compare
Choose a tag to compare

sbt-nocomma reduces commas from your build.sbt.

ThisBuild / organization := "com.example"
ThisBuild / scalaVersion := "3.2.0"
ThisBuild / version      := "0.1.0-SNAPSHOT"

lazy val root = (project in file("."))
  .settings(nocomma {

    name := "Hello"
    scalacOptions += "-Ykind-projector"
  })

Bug fixes and updates

  • Removes ScalaTest dependency that was added by mistake by @xuwei-k in #7
  • Uses SettingsDefinition instead of Setting[_] by @xuwei-k in #4
  • Migrates to GitHub Actions by @eed3si9n in #6

New Contributors

Full Changelog: https://github.com/sbt/sbt-nocomma/commits/v0.1.1