injekt v1.3.0 Release Notes

Release Date: 2015-08-21 // over 8 years ago
  • ๐Ÿ“š see CHANGELOG.md for history of changes. And README.md for documentation.

    ๐Ÿ†• NEW FEATURE: Configuration Injection w/Typesafe Config. Read more about it in the inject-config-typesafe module.

    Gradle:

    compile "uy.kohesive.injekt:injekt-core:1.3.+"
    compile "uy.kohesive.injekt:injekt-config-typesafe:1.3.+"
    

    Maven:

    <dependency>
        <groupId>uy.kohesive.injekt</groupId>
        <artifactId>injekt-core</artifactId>
        <version>[1.3.0,1.4.0)</version>
    </dependency>
    <dependency>
        <groupId>uy.kohesive.injekt</groupId>
        <artifactId>injekt-config-typesafe</artifactId>
        <version>[1.3.0,1.4.0)</version>
    </dependency>
    
    • โž• Added Configuration injection from Typesafe Config (see README in config-typesafe)
    • โž• Added storage in Injekt scope for addons to work within a scope

Previous changes from v1.2.0

  • ๐Ÿ“š see CHANGELOG.md for history of changes. And README.md for documentation.

    Gradle:

    compile "uy.kohesive.injekt:injekt-core:1.2.+"
    

    Maven:

    <dependency>
        <groupId>uy.kohesive.injekt</groupId>
        <artifactId>injekt-core</artifactId>
        <version>[1.2.0,1.3.0)</version>
    </dependency>
    
    • ๐Ÿ“ฆ [BREAKING CHANGE] Fixing #8 - Moved api classes to uy.kohesive.injekt.api package so that separate module jars do not have classes in the same package, breaking use in Android
    • [BREAKING CHANGE] Remove deprecated "injekt_" delegates (replaced with "inject_")