Skip to content

Commit

Permalink
v0.3.4 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Apr 12, 2017
1 parent 023880f commit c2aebc0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 1 addition & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ lazy val buildInfoSettings: Seq[Def.Setting[_]] = Seq(
buildInfoKeys := Seq[BuildInfoKey](
name,
version,
// TODO(olafur) update to version.value.replaceAll("\\+.*", "") once custom
// resolver is no longer necessary
"stableVersion" -> "0.3.2",
"stableVersion" -> version.value.replaceAll("\\+.*", ""),
"scalameta" -> scalametaV,
scalaVersion,
"scala211" -> scala211,
Expand Down
11 changes: 11 additions & 0 deletions readme/Changelog.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
@import scalafix.Versions

@sect{Changelog}
@sect{0.3.4}
@ul
New @code{RenameSymbol} tree patch, which behaves similar to "Rename
method/variable" refactorings in IDEs.
@ul
New module: @sect.ref{scalafix-testkit}.
@ul
Rewrites can now report info/warn/error messages via
@code{ctx.reporter.info/warn/error}, see @pr(118).
@ul
2.11 support is now only for 2.11.10.
@sect{0.3.3}
@ul
@li
Expand Down
1 change: 1 addition & 0 deletions readme/src/main/scala/scalafix/Readme.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ object Readme {
def repo: String = "https://github.com/scalacenter/scalafix"
def user(name: String): Frag = a(href := s"$github/$name", s"@$name")
def issue(i: Int): Frag = a(href := s"$repo/issues/$i", s"#$i")
def pr(i: Int): Frag = a(href := s"$repo/pulls/$i", s"#$i")
def dotty = a(href := "http://dotty.epfl.ch/", "Dotty")
def comment(frags: Frag*): TypedTag[String] = span("")
def config(str: String): TypedTag[String] = {
Expand Down

0 comments on commit c2aebc0

Please sign in to comment.