From 8c103df7e57d87641cbd63fa5ade7a7ac0ca9f93 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Sun, 16 Aug 2015 15:50:54 +0200 Subject: [PATCH] Remove deprecated module "dependency" --- CHANGES.md | 3 +++ README.md | 2 +- source/poodinis/dependency.d | 22 ---------------------- 3 files changed, 4 insertions(+), 23 deletions(-) delete mode 100644 source/poodinis/dependency.d diff --git a/CHANGES.md b/CHANGES.md index c769c1a..a7c177d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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. diff --git a/README.md b/README.md index 4bf18f5..d7fb9a9 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/source/poodinis/dependency.d b/source/poodinis/dependency.d deleted file mode 100644 index 956d7a4..0000000 --- a/source/poodinis/dependency.d +++ /dev/null @@ -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;