diff --git a/CHANGELOG.md b/CHANGELOG.md
index bb487a1..65609fa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+
+## [1.3.6](https://github.com/zywave/SMLogging/compare/1.3.5...v1.3.6) (2016-12-15)
+
+
+### Bug Fixes
+
+* improve Windows Event Log messages when logging fails ([56e8e61](https://github.com/zywave/SMLogging/commit/56e8e61))
+
+
+
## [1.3.5](https://github.com/zywave/SMLogging/compare/1.3.4...v1.3.5) (2016-11-20)
diff --git a/NuGet.nuspec b/NuGet.nuspec
index 237f2c2..ddb05e4 100644
--- a/NuGet.nuspec
+++ b/NuGet.nuspec
@@ -2,7 +2,7 @@
SMLogging
Service Model Logging
- 1.3.5
+ 1.3.6
Zywave
https://github.com/Zywave/SMLogging
https://raw.githubusercontent.com/Zywave/SMLogging/master/LICENSE
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index 386384f..8576bdd 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -1,10 +1,3 @@
### Bug Fixes
-* prevent BackgroundFileTraceListener from queuing events infinitely when failing to write to file by adding a MaxQueueSize setting defaulted to 10000 ([88ef72c](https://github.com/zywave/SMLogging/commit/88ef72c))
-* remove unecessary static locks ([5cbd964](https://github.com/zywave/SMLogging/commit/5cbd964))
-
-
-### Features
-
-* log failures to event log ([1c12355](https://github.com/zywave/SMLogging/commit/1c12355))
-* log fault exception details in error handler ([8b56bb8](https://github.com/zywave/SMLogging/commit/8b56bb8))
\ No newline at end of file
+* improve Windows Event Log messages when logging fails ([56e8e61](https://github.com/zywave/SMLogging/commit/56e8e61))
\ No newline at end of file
diff --git a/SMLogging-net35/Properties/AssemblyInfo.cs b/SMLogging-net35/Properties/AssemblyInfo.cs
index 56715e9..d0d0416 100644
--- a/SMLogging-net35/Properties/AssemblyInfo.cs
+++ b/SMLogging-net35/Properties/AssemblyInfo.cs
@@ -13,6 +13,6 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("151c949d-8353-406c-b331-7c9fc06ef08f")]
-[assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyFileVersion("1.3.5.0")]
+[assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyFileVersion("1.3.6.0")]
[assembly: CLSCompliant(true)]
diff --git a/SMLogging.Lab.Client/Properties/AssemblyInfo.cs b/SMLogging.Lab.Client/Properties/AssemblyInfo.cs
index e95890a..beaa0fa 100644
--- a/SMLogging.Lab.Client/Properties/AssemblyInfo.cs
+++ b/SMLogging.Lab.Client/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyFileVersion("1.3.5.0")]
+// [assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyFileVersion("1.3.6.0")]
diff --git a/SMLogging.Lab/Properties/AssemblyInfo.cs b/SMLogging.Lab/Properties/AssemblyInfo.cs
index 0248761..e4f27a2 100644
--- a/SMLogging.Lab/Properties/AssemblyInfo.cs
+++ b/SMLogging.Lab/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyFileVersion("1.3.5.0")]
+// [assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyFileVersion("1.3.6.0")]
diff --git a/SMLogging.Setup.CustomActions/Properties/AssemblyInfo.cs b/SMLogging.Setup.CustomActions/Properties/AssemblyInfo.cs
index ca3f6a0..6c39481 100644
--- a/SMLogging.Setup.CustomActions/Properties/AssemblyInfo.cs
+++ b/SMLogging.Setup.CustomActions/Properties/AssemblyInfo.cs
@@ -10,5 +10,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("9ab080ba-8c47-4db9-ad1b-6404ac9e5c2c")]
-[assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyFileVersion("1.3.5.0")]
+[assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyFileVersion("1.3.6.0")]
diff --git a/SMLogging.Setup/Product.wxs b/SMLogging.Setup/Product.wxs
index f693888..397b52b 100644
--- a/SMLogging.Setup/Product.wxs
+++ b/SMLogging.Setup/Product.wxs
@@ -1,5 +1,5 @@
-
+
diff --git a/SMLogging/Properties/AssemblyInfo.cs b/SMLogging/Properties/AssemblyInfo.cs
index 4052565..bb6b908 100644
--- a/SMLogging/Properties/AssemblyInfo.cs
+++ b/SMLogging/Properties/AssemblyInfo.cs
@@ -12,6 +12,6 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("7a39f680-a620-4b15-af44-56cf6e880a7f")]
-[assembly: AssemblyVersion("1.3.5.0")]
-[assembly: AssemblyFileVersion("1.3.5.0")]
+[assembly: AssemblyVersion("1.3.6.0")]
+[assembly: AssemblyFileVersion("1.3.6.0")]
[assembly: CLSCompliant(true)]
diff --git a/appveyor.yml b/appveyor.yml
index 37bfef0..d0fd225 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -10,7 +10,7 @@ environment:
SIGNING_KEY_PASSWORD:
secure: q/2tcRmM2IULkFnXQ1DUIA==
SN_PATH: C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\sn.exe
- VERSION_PREFIX: 1.3.5
+ VERSION_PREFIX: 1.3.6
before_build:
- ps: >-
nuget restore
diff --git a/package.json b/package.json
index 4d50aea..a810b8b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "SMLogging",
- "version": "1.3.5",
+ "version": "1.3.6",
"private": true,
"repository": {
"type": "git",