diff --git a/.github/changelogs/0.2.1.md b/.github/changelogs/0.2.1.md new file mode 100644 index 0000000..ec4a58f --- /dev/null +++ b/.github/changelogs/0.2.1.md @@ -0,0 +1,4 @@ +Just removed a dependency to not force others to install or use it. + +### Changed +* Removed Serilog dependency diff --git a/CHANGELOG.md b/CHANGELOG.md index ce411f8..9019246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,11 @@ All notable changes to this project will be documented in this file. It uses the ### Fixed ### Security +## 0.2.1 (2022-01-08) + +### Changed +* Removed Serilog dependency + ## 0.2.0 (2022-01-03) ### Added diff --git a/README.md b/README.md index 8029220..529dee4 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,8 @@ Thanks to the following people for their help in one way or another. ## Dependencies +### libNOM.map + * [Microsoft.CodeAnalysis.PublicApiAnalyzers](https://www.nuget.org/packages/Microsoft.CodeAnalysis.PublicApiAnalyzers/) - Monitor changes to the public API. * [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json/) - Handle JSON objects. * [Octokit](https://www.nuget.org/packages/Octokit/) - Query MBINCompiler release information. -* [Serilog](https://www.nuget.org/packages/Serilog/) - Log mentionable events. diff --git a/libNOM.map/Mapping.cs b/libNOM.map/Mapping.cs index 9894e7c..87d8800 100644 --- a/libNOM.map/Mapping.cs +++ b/libNOM.map/Mapping.cs @@ -2,7 +2,6 @@ using libNOM.map.Extensions; using libNOM.map.Json; using Newtonsoft.Json.Linq; -using Serilog; namespace libNOM.map; @@ -168,8 +167,6 @@ private async Task DownloadAsync() using Stream fileStream = new FileStream(PATH, FileMode.Create, FileAccess.Write, FileShare.None); await contentStream.CopyToAsync(fileStream); - Log.Information($"Downloaded {version} of {FILE}"); - // Deserialize the downloaded file. contentStream.Position = 0; JsonDownload = MappingJson.Deserialize(new StreamReader(contentStream).ReadToEnd()); diff --git a/libNOM.map/libNOM.map.csproj b/libNOM.map/libNOM.map.csproj index e3e3a90..61465f9 100644 --- a/libNOM.map/libNOM.map.csproj +++ b/libNOM.map/libNOM.map.csproj @@ -6,7 +6,7 @@ enable https://github.com/zencq/libNOM.map README.md - 0.2.0 + 0.2.1 @@ -26,7 +26,6 @@ -