Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
Drop support for Scala 2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kciesielski committed Jul 9, 2018
1 parent ad3d51b commit c19ab59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A micro-library for macro-based case class field masking in `.toString()`.
Inspired by blog by Juan Pedro Moreno @47deg: http://www.47deg.com/blog/scala-macros-annotate-your-case-classes

## Using stringmask
Builds are available for Scala 2.10, 2.11 and 2.12
Builds are available for Scala 2.11 and 2.12

````scala
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "stringmask"

scalaVersion := "2.12.6"

crossScalaVersions := Seq(scalaVersion.value, "2.10.6", "2.11.11")
crossScalaVersions := Seq(scalaVersion.value, "2.11.11")

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
Expand Down

0 comments on commit c19ab59

Please sign in to comment.