Remove deprecated module "dependency"

This commit is contained in:
Mike Bierlee 2015-08-16 15:50:54 +02:00
parent bf7e2c8229
commit 8c103df7e5
3 changed files with 4 additions and 23 deletions

View file

@ -1,5 +1,8 @@
Poodinis Changelog
==================
**Version 4.0.0**
* REMOVE deprecated module "dependency.d"
**Version 3.0.0**
This version is only compatible with DMD 2.068.0 or higher!
* ADD UDA which always resolved a new instance to an autowired member, regardless of registration scope.

View file

@ -1,6 +1,6 @@
Poodinis Dependency Injection Framework
=======================================
Version 3.0.0
Version 4.0.0
Copyright 2014-2015 Mike Bierlee
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)

View file

@ -1,22 +0,0 @@
/**
* Main module for typical inclusion into client applications.
*
* This module publicly imports all Poodinis modules.
*
* Part of the Poodinis Dependency Injection framework.
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2015 Mike Bierlee
* License:
* This software is licensed under the terms of the MIT license.
* The full terms of the license can be found in the LICENSE file.
*/
module poodinis.dependency;
pragma(msg, "Module 'dependency' is deprecated. Please use the canonical package module. To do this, simply 'import poodinis;'");
public import poodinis.autowire;
public import poodinis.container;
public import poodinis.registration;