diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6ebd84a..fdc3dec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,14 +1,24 @@
+
# 1.0.1 (2016-09-16)
* Initial release with nuget package
+
# 1.0.2 (2016-12-11)
* ToString for Errors
* Added message to ApiException by calling base class
* Added methods to send FileStreams
+
# 1.0.3 (2017-01-28)
-* Changed InboundFax.MessageId from string to int
\ No newline at end of file
+* Changed InboundFax.MessageId from string to int
+
+
+# 1.0.4 (2017-02-09)
+
+* Changed OutboundFax.PageHeader from int (!) to string
+* Fixed a bug in Outbound.GetCompleted so that it gets completed faxes now.
+* Signature change in GetCompleted from IEnumerable to params int[] (not considered breaking as it wasn't working before)
\ No newline at end of file
diff --git a/InterFAX.Api/Properties/AssemblyInfo.cs b/InterFAX.Api/Properties/AssemblyInfo.cs
index 4a40fbd..c63d70e 100644
--- a/InterFAX.Api/Properties/AssemblyInfo.cs
+++ b/InterFAX.Api/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.3.0")]
-[assembly: AssemblyFileVersion("1.0.3.36")]
+[assembly: AssemblyVersion("1.0.4.0")]
+[assembly: AssemblyFileVersion("1.0.4.38")]
diff --git a/README.md b/README.md
index d080bf6..40ad755 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ Send and receive faxes in [CLI Languages](https://en.wikipedia.org/wiki/List_of_
This library targets .NET 4.5.2 and can be installed via Nuget :
```
-Install-Package InterFAX.Api -Version 1.0.3
+Install-Package InterFAX.Api -Version 1.0.4
```
## Getting started