diff --git a/LightweightIocContainer/LightweightIocContainer.xml b/LightweightIocContainer/LightweightIocContainer.xml
index cde8b71..750e800 100644
--- a/LightweightIocContainer/LightweightIocContainer.xml
+++ b/LightweightIocContainer/LightweightIocContainer.xml
@@ -979,6 +979,7 @@
The registered
An instance of the given registered , an if parameters need to be resolved or an if a factory method is used to create an instance
The given is not registered
+ A direct resolve with a registered factory is not allowed
An interface was registered without an implementation or factory method
Tried resolving a multiton without scope argument
No matching constructor for the given found
@@ -994,6 +995,7 @@
An instance of the given registered , an if parameters need to be resolved or an if a factory method is used to create an instance
The given is not registered
+ A direct resolve with a registered factory is not allowed
An interface was registered without an implementation or factory method
Tried resolving a multiton without scope argument
No matching constructor for the given found
diff --git a/README.md b/README.md
index 1fcb349..9409722 100644
--- a/README.md
+++ b/README.md
@@ -16,13 +16,13 @@ The easiest way to [install](https://github.com/SimonG96/LightweightIocContainer
You can either use the [`PackageManager`](https://github.com/SimonG96/LightweightIocContainer/wiki/Install-Lightweight-IOC-Container#packagemanager) in VisualStudio:
```PM
-PM> Install-Package LightweightIocContainer -Version 3.0.1
+PM> Install-Package LightweightIocContainer -Version 4.0.0-beta
```
or you can use the [`.NET CLI`](https://github.com/SimonG96/LightweightIocContainer/wiki/Install-Lightweight-IOC-Container#net-cli):
```.net
-> dotnet add package LightweightIocContainer --version 3.0.1
+> dotnet add package LightweightIocContainer --version 4.0.0-beta
```
### Example usage