diff --git a/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs b/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs index cc00650..3a3e9d4 100644 --- a/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs +++ b/src/Serilog.Sinks.Seq/SeqLoggerConfigurationExtensions.cs @@ -47,7 +47,7 @@ public static class SeqLoggerConfigurationExtensions /// If provided, the switch will be updated based on the Seq server's level setting /// for the corresponding API key. Passing the same key to MinimumLevel.ControlledBy() will make the whole pipeline /// dynamically controlled. Do not specify with this setting. - /// Used to construct the HttpClient that will send the log meesages to Seq. + /// Used to construct the HttpClient that will send the log messages to Seq. /// A soft limit for the number of bytes to use for storing failed requests. /// The limit is soft in that it can be exceeded by any single error payload, but in that case only that single error /// payload will be retained. @@ -131,7 +131,7 @@ public static LoggerConfiguration Seq( /// The minimum log event level required /// in order to write an event to the sink. /// A Seq API key that authenticates the client to the Seq server. - /// Used to construct the HttpClient that will send the log meesages to Seq. + /// Used to construct the HttpClient that will send the log messages to Seq. /// Use the compact log event format defined by /// Serilog.Formatting.Compact. Has no effect on /// durable log shipping. Requires Seq 3.3+. diff --git a/src/Serilog.Sinks.Seq/project.json b/src/Serilog.Sinks.Seq/project.json index 5decddf..638713c 100644 --- a/src/Serilog.Sinks.Seq/project.json +++ b/src/Serilog.Sinks.Seq/project.json @@ -1,5 +1,5 @@ { - "version": "3.1.1-*", + "version": "3.2.0-*", "description": "Serilog sink that writes to the Seq log server over HTTP/S.", "authors": [ "Serilog Contributors" ], "packOptions": { @@ -9,7 +9,7 @@ "iconUrl": "http://serilog.net/images/serilog-sink-seq-nuget.png" }, "dependencies": { - "Serilog": "2.2.0", + "Serilog": "2.3.0", "Serilog.Sinks.PeriodicBatching": "2.1.0", "Serilog.Formatting.Compact": "1.0.0" }, @@ -27,7 +27,8 @@ "System.Net.Http": "" }, "dependencies": { - "Serilog.Sinks.RollingFile": "3.0.0" + "Serilog.Sinks.File": "3.2.0", + "Serilog.Sinks.RollingFile": "3.3.0" } }, "netstandard1.1": { @@ -41,7 +42,8 @@ }, "dependencies": { "System.Net.Http": "4.1.0", - "Serilog.Sinks.RollingFile": "3.0.0", + "Serilog.Sinks.File": "3.2.0", + "Serilog.Sinks.RollingFile": "3.3.0", "System.Threading.Timer": "4.0.1" } }