Skip to content

Releases: eed3si9n/treehugger

0.4.4

10 Sep 13:41
v0.4.4
80593c4
Compare
Choose a tag to compare

treehugger 0.4.4 is published for Scala 2.10 - 2.13.

about treehugger.scala

treehugger.scala is a library to code Scala programmatically.

0.4.3

09 Aug 03:17
v0.4.3
Compare
Choose a tag to compare

Breaking change: annotation

Print annotations for ClassDef, PackageDef, ModuleDef, ValDef, ProcDef, DefDef on their own lines.

Before:

@annotation1 @annotation2 trait MyTrait {
  ... 
}

After:

@annotation1
@annotation2
trait MyTrait {
  ... 
}

Contributed by @julianpeeters as #34

Cross building: 2.10, 2.11, 2.12, and 2.13.0-M2

treehugger 0.4.3 is cross published for 2.10, 2.11, 2.12, and 2.13.0-M2.

Contributed by @thyming as #41