Skip to content

Commit

Permalink
[edit] version/changelog
Browse files Browse the repository at this point in the history
[fix] .NET 5 obsolescence warning
  • Loading branch information
i4004 committed Nov 30, 2022
1 parent 0cadff5 commit f165948
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 6 deletions.
6 changes: 6 additions & 0 deletions src/Simplify.DI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [4.2.8] - 2022-11-30

### Dependencies

- Internal DryIoc bump to 5.3.1 (PR#466)

## [4.2.7] - 2022-11-11

### Dependencies
Expand Down
4 changes: 3 additions & 1 deletion src/Simplify.DI/Simplify.DI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1;netstandard2.0;net452</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<CheckEolTargetFramework>false</CheckEolTargetFramework>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<Version>4.2.7</Version>
<Version>4.2.8</Version>

<Authors>Alexander Krylkov</Authors>
<Product>Simplify</Product>
Expand Down
6 changes: 6 additions & 0 deletions src/Simplify.IO/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.3.0] - 2022-11-30

### Dependencies

- System.IO.Abstractions bump to 18.0.1 (PR#467)

## [1.2.5] - 2022-05-02

### Dependencies
Expand Down
5 changes: 3 additions & 2 deletions src/Simplify.IO/Simplify.IO.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<TargetFrameworks>net6.0;netstandard2.0;net462</TargetFrameworks>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<Version>1.2.5</Version>
<Version>1.3</Version>

<Authors>Alexander Krylkov</Authors>
<Product>Simplify</Product>
Expand Down
11 changes: 11 additions & 0 deletions src/Simplify.Log/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [2.1.0] - 2022-11-30

### Added

- .NET 6.0 explicit targeting (removed incorrect .NET 5 targeting)

### Dependencies

- System.IO.Abstractions bump to 18.0.1 (PR#467)
- Microsoft.Extensions.Configuration.Abstractions bump to 6.0

## [2.0.3] - 2022-05-02

### Dependencies
Expand Down
7 changes: 4 additions & 3 deletions src/Simplify.Log/Simplify.Log.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net50;netstandard2.0</TargetFrameworks>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<Version>2.0.3</Version>
<Version>2.1</Version>

<Authors>Alexander Krylkov</Authors>
<Product>Simplify</Product>
Expand All @@ -21,7 +22,7 @@
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify/tree/master/src/Simplify.Log/CHANGELOG.md for details</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="System.IO.Abstractions" Version="18.0.1" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions src/Simplify.Resources/Simplify.Resources.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0;net452</TargetFrameworks>
<CheckEolTargetFramework>false</CheckEolTargetFramework>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
2 changes: 2 additions & 0 deletions src/Simplify.System/Simplify.System.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<TargetFrameworks>net5.0;netstandard2.0;netcoreapp3.1;net452</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<CheckEolTargetFramework>false</CheckEolTargetFramework>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
2 changes: 2 additions & 0 deletions src/Simplify.Xml/Simplify.Xml.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<TargetFrameworks>net5.0;netcoreapp3.1;netstandard2.0;net452</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<CheckEolTargetFramework>false</CheckEolTargetFramework>

<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down

0 comments on commit f165948

Please sign in to comment.