Releases: christian-schlichtherle/bali-di-scala
Releases · christian-schlichtherle/bali-di-scala
Bali DI for Scala 0.3.0
Bali DI for Scala 0.2.1
This release fixes the priority of available dependencies.
Bali DI for Scala 0.2.0
This release adds elementary support for the @Module
and @Lookup
annotations.
So now you can do:
@bali.Module
trait Clock {
def now: java.util.Date
}
val clock = bali.scala.make[Clock]
println("Now it's " + clock.now)
Bali DI for Scala 0.1.0
This initial release contains only the make def macro from Neuron DI, which forms the basis for the upcoming extensions towards feature parity with Bali DI for Java.