September 03, 2016
Poodinis is a dependency injection framework for the D programming language. It is heavily inspired by the Spring Framework.

New in this release is constructor injection. Whenever the dependency container resolves a class it creates an instance of that class. During creation it attempts to resolve dependencies defined in that class' constructor and passes them when created. This is done fully automated without the need of UDAs. Of course member-based injection is still available too.

Besides constructor injection, all previously deprecated code has been removed in this version. For more info, see the changelog.

You can find the project at:
Github: https://github.com/mbierlee/poodinis
D package registry: http://code.dlang.org/packages/poodinis

September 05, 2016
cool! i really like poodinis. it powers one of my projects and is very intuitive and simple to me :)