mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Prepare release 0.1.1
This commit is contained in:
parent
f97a689f29
commit
e3124b53e6
17
CHANGES.md
17
CHANGES.md
|
@ -1,7 +1,10 @@
|
|||
Poodinis Changelog
|
||||
==================
|
||||
**Version 0.1**
|
||||
* Initial open-source release
|
||||
* ADD support for registering and resolving
|
||||
* ADD registration scopes
|
||||
* ADD autowiring
|
||||
Poodinis Changelog
|
||||
==================
|
||||
**Version 0.1.1**
|
||||
* FIX: Also auto-wire members from base classes
|
||||
|
||||
**Version 0.1.0**
|
||||
* Initial open-source release
|
||||
* ADD support for registering and resolving
|
||||
* ADD registration scopes
|
||||
* ADD autowiring
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Poodinis Dependency Injection Framework
|
||||
=======================================
|
||||
Version 0.1
|
||||
Version 0.1.1
|
||||
Copyright 2014 Mike bierlee
|
||||
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)
|
||||
|
||||
|
@ -122,7 +122,7 @@ Poodinis can autowire circular dependencies when they are registered with single
|
|||
Known issues
|
||||
------------
|
||||
* Due to preventive measures of recursion issues in circular dependencies, registrations which are supposed to yield new instances will not autowire classes for which a circular dependency is detected. A new instance will be resolved but the instance's members will not be autowired.
|
||||
* Resolving a class registered by supertype or interface will only autowire the members inherited from its supertype and in the case of interfaces nothing at all.
|
||||
* Resolving a class registered by supertype or interface will only autowire the members inherited from its supertypes and in the case of interfaces none at all.
|
||||
|
||||
Future Work
|
||||
-----------
|
||||
|
|
Loading…
Reference in a new issue