From ab88e787255771ea2fcaa4aa1ee250e7c7804e37 Mon Sep 17 00:00:00 2001 From: Callon Campbell Date: Mon, 3 Aug 2015 13:52:05 -0400 Subject: [PATCH] Initial update for ReflectInsight 5.5.1 --- Build.ps1 | 2 +- CHANGES.md | 15 ++++++++++++--- README.md | 4 +++- assets/VersionInfo.cs | 4 ++-- ...Software.Insight.Extensions.Log4net 2.0.csproj | 5 ++--- ...Software.Insight.Extensions.Log4net 4.0.csproj | 5 ++--- ...Software.Insight.Extensions.Log4net 4.5.csproj | 5 ++--- ...lectSoftware.Insight.Extensions.Log4net.nuspec | 4 ++-- src/packages.config | 12 ++++++------ src/readme.txt | 10 ++++++++-- 10 files changed, 40 insertions(+), 26 deletions(-) diff --git a/Build.ps1 b/Build.ps1 index 43ae3ee..b552abc 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -1,6 +1,6 @@ param( [String] $majorMinor = "5.5", # 5.5 - [String] $patch = "1", # $env:APPVEYOR_BUILD_VERSION + [String] $patch = "2", # $env:APPVEYOR_BUILD_VERSION [String] $customLogger = "", # C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll [Switch] $notouch, [String] $project = "ReflectSoftware.Insight.Extensions.Log4Net" diff --git a/CHANGES.md b/CHANGES.md index 92528f5..09b07db 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ ## Change Log ## -#### Version 5.5 #### - - * Moved from [CodePlex](http://insightextensions.codeplex.com/ "CodePlex") \ No newline at end of file +#### Version 5.5.1 #### + * Bug fixes for packages improperly being downloaded. RabbitMQ is now a nuget dependency. + +#### Version 5.5.0 #### + * Moved source code from [CodePlex](http://insightextensions.codeplex.com/ "CodePlex") to GitHub + * Moved extension documentation to [ReflectInsight wiki](https://reflectsoftware.atlassian.net/wiki/display/RI5/ReflectInsight+5+documentation "ReflectInsight wiki") + * Updated extension to use ReflectInsight 5.5.0 version + * New HttpRequest message type + * New JSON message type + * General bug fixes and enhancements + * Performance tuning + * Using [AppVeyor](http://www.appveyor.com/ "AppVeyor") for continue delivery (builds and NuGet publishing) diff --git a/README.md b/README.md index cfae43b..a1e7388 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Then in your app.config or web.config file, add the following configuration sect ``` -Additional configuration details for the ReflectSoftware.Insight.Extensions.Log4Net logging extension can be found [here](https://reflectsoftware.atlassian.net/wiki/display/RI5/Log4net+Extension). +Additional configuration details for the **ReflectSoftware.Insight.Extensions.Log4Net** logging extension can be found in our [documentation](https://reflectsoftware.atlassian.net/wiki/display/RI5/Log4net+Extension). ## Additional Resources @@ -82,3 +82,5 @@ Additional configuration details for the ReflectSoftware.Insight.Extensions.Log4 [Submit User Feedback](http://reflectsoftware.uservoice.com/forums/158277-reflectinsight-feedback) [Contact Support](support@reflectsoftware.com) + +[ReflectSoftware Website](http://reflectsoftware.com) diff --git a/assets/VersionInfo.cs b/assets/VersionInfo.cs index 19a7e3d..fc0b708 100644 --- a/assets/VersionInfo.cs +++ b/assets/VersionInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyVersion("5.5.0.1500")] -[assembly: AssemblyFileVersion("5.5.0.1500")] +[assembly: AssemblyVersion("5.5.1.1510")] +[assembly: AssemblyFileVersion("5.5.1.1510")] [assembly: AssemblyInformationalVersion("5.5.1")] diff --git a/src/ReflectSoftware.Insight.Extensions.Log4net 2.0.csproj b/src/ReflectSoftware.Insight.Extensions.Log4net 2.0.csproj index cc24223..eeaa5b9 100644 --- a/src/ReflectSoftware.Insight.Extensions.Log4net 2.0.csproj +++ b/src/ReflectSoftware.Insight.Extensions.Log4net 2.0.csproj @@ -69,11 +69,10 @@ ..\packages\log4net.2.0.3\lib\net35-full\log4net.dll - ..\packages\Newtonsoft.Json.6.0.8\lib\net35\Newtonsoft.Json.dll - True + ..\packages\Newtonsoft.Json.7.0.1\lib\net35\Newtonsoft.Json.dll - ..\packages\ReflectSoftware.Insight.5.5.0\lib\net20\ReflectSoftware.Insight.dll + ..\packages\ReflectSoftware.Insight.5.5.1\lib\net20\ReflectSoftware.Insight.dll diff --git a/src/ReflectSoftware.Insight.Extensions.Log4net 4.0.csproj b/src/ReflectSoftware.Insight.Extensions.Log4net 4.0.csproj index c7477b2..bf4a1fa 100644 --- a/src/ReflectSoftware.Insight.Extensions.Log4net 4.0.csproj +++ b/src/ReflectSoftware.Insight.Extensions.Log4net 4.0.csproj @@ -69,11 +69,10 @@ ..\packages\log4net.2.0.3\lib\net40-full\log4net.dll - ..\packages\Newtonsoft.Json.6.0.8\lib\net40\Newtonsoft.Json.dll - True + ..\packages\Newtonsoft.Json.7.0.1\lib\net40\Newtonsoft.Json.dll - ..\packages\ReflectSoftware.Insight.5.5.0\lib\net40\ReflectSoftware.Insight.dll + ..\packages\ReflectSoftware.Insight.5.5.1\lib\net40\ReflectSoftware.Insight.dll diff --git a/src/ReflectSoftware.Insight.Extensions.Log4net 4.5.csproj b/src/ReflectSoftware.Insight.Extensions.Log4net 4.5.csproj index 5f295a6..708a08f 100644 --- a/src/ReflectSoftware.Insight.Extensions.Log4net 4.5.csproj +++ b/src/ReflectSoftware.Insight.Extensions.Log4net 4.5.csproj @@ -71,11 +71,10 @@ ..\packages\log4net.2.0.3\lib\net40-full\log4net.dll - ..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll - True + ..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - ..\packages\ReflectSoftware.Insight.5.5.0\lib\net45\ReflectSoftware.Insight.dll + ..\packages\ReflectSoftware.Insight.5.5.1\lib\net45\ReflectSoftware.Insight.dll diff --git a/src/ReflectSoftware.Insight.Extensions.Log4net.nuspec b/src/ReflectSoftware.Insight.Extensions.Log4net.nuspec index 509a76c..ee88f96 100644 --- a/src/ReflectSoftware.Insight.Extensions.Log4net.nuspec +++ b/src/ReflectSoftware.Insight.Extensions.Log4net.nuspec @@ -2,7 +2,7 @@ ReflectSoftware.Insight.Extensions.Log4net - 5.5.1 + 5.5.2 ReflectSoftware.Insight.Extensions.Log4net ReflectSoftware Inc. ReflectSoftware Inc. @@ -27,7 +27,7 @@ For help on configuration, please see our documentation on the website (https:// Log4net Logging Extensions ReflectInsight Appender Log Tracing RabbitMQ - + diff --git a/src/packages.config b/src/packages.config index 0876e6c..876eb47 100644 --- a/src/packages.config +++ b/src/packages.config @@ -3,10 +3,10 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/src/readme.txt b/src/readme.txt index 452a99d..20ad314 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -1,11 +1,17 @@ REFLECTSOFTWARE INC. REFLECTINSIGHT LOGGING LIBRARY -VERSION 5.4 +VERSION 5.5 RELEASE NOTES Version 5.5.1 -- Added auto save log file by file size +- Bug fixes for packages improperly being downloaded. RabbitMQ is now a nuget dependency. + +Version 5.5.0 +- New HttpRequest message type +- New JSON message type +- General bug fixes and enhancements +- Performance tuning Version 5.4.0 - Added auto save log file by file size