diff --git a/Rest.Net/Rest.Net.csproj b/Rest.Net/Rest.Net.csproj
index 4c96c49..0cab141 100644
--- a/Rest.Net/Rest.Net.csproj
+++ b/Rest.Net/Rest.Net.csproj
@@ -17,7 +17,7 @@
MontoyaTech.Rest.Net
MontoyaTech.Rest.Net
True
- 1.5.7
+ 1.5.8
Logo_Symbol_Black_Outline.png
diff --git a/Rest.Net/RestClientGenerator.cs b/Rest.Net/RestClientGenerator.cs
index 22b54a1..d9e73b3 100644
--- a/Rest.Net/RestClientGenerator.cs
+++ b/Rest.Net/RestClientGenerator.cs
@@ -357,6 +357,8 @@ namespace MontoyaTech.Rest.Net
return "null";
else if (typeCode == TypeCode.Char)
return "'\\0'";
+ else if (typeCode == TypeCode.Boolean)
+ return "false";
else
return Activator.CreateInstance(type).ToString();
}