v0.15
Major Features and Improvements
Konf is modularized, now you can use different modules for different sources without unnecessary dependencies.
Breaking Changes
After modularized Konf, hocon
/toml
/xml
/yaml
/git
/watchGit
in DefaultLoaders
become extension properties/functions and should be imported explicitly.
For example, you should import com.uchuhimo.konf.source.hocon
before using config.from.hocon
; in Java, config.from().hocon
is unavailable, please use config.from().source(HoconProvider.INSTANCE)
instead.