Skip to content

Commit

Permalink
🔖 Chasm.Compatibility v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chasmical committed Jul 30, 2024
1 parent a355e65 commit a2507c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Chasm.Compatibility/Chasm.Compatibility/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Chasm.Compatibility Changelog

### v2.3.0
- 🧩 Added `netcoreapp2.1`, `netstandard1.3` and `net461` targets. Now targets: `net8.0`, `net7.0`, `net6.0`, `net5.0`, `netcoreapp3.0`, `netcoreapp2.1`, `netcoreapp2.0`, `netcoreapp1.1`, `netcoreapp1.0`, `netstandard2.1`, `netstandard2.0`, `netstandard1.3`, `netstandard1.1`, `netstandard1.0`, `net47`, `net461`, `net45`, `net40`, `net35`;
- ⬆️ Chasm.Compatibility.HashCode v2.0.0;
- ⬆️ Chasm.Compatibility.ValueTuple v2.1.0;
- ⬆️ Chasm.Compatibility.IndexRange v2.1.0;

### v2.2.0
- 🧩 Added `net47` target. Now targets: `net8.0`, `net7.0`, `net6.0`, `net5.0`, `netcoreapp3.0`, `netcoreapp2.0`, `netcoreapp1.1`, `netcoreapp1.0`, `netstandard2.1`, `netstandard2.0`, `netstandard1.1`, `netstandard1.0`, `net47`, `net45`, `net40`, `net35`;
- ⬆️ Chasm.Compatibility.ValueTuple v2.0.0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
net6.0;
net5.0;
netcoreapp3.0;
netcoreapp2.1;
netcoreapp2.0;
netcoreapp1.1;
netcoreapp1.0;
Expand All @@ -23,15 +24,15 @@
net35;
</TargetFrameworks>
<!--
Target frameworks are copied from all of the sub-projects.
Target frameworks are copied from the subprojects.
Don't forget to update the sub-project dependencies at the end.
Don't forget to update the subproject dependencies at the end.
-->

<!-- Header -->
<AssemblyName>Chasm.Compatibility</AssemblyName>
<PackageId>$(AssemblyName)</PackageId>
<Version>2.2.0</Version>
<Version>2.3.0</Version>

<!-- Title, Description, Tags -->
<Title>$(AssemblyName)</Title>
Expand Down Expand Up @@ -74,6 +75,7 @@

<!-- System.Index and System.Range supported since netcoreapp3.0, netstandard2.1 -->
<ItemGroup Condition="(
'$(TargetFramework)'=='netcoreapp2.1' or
'$(TargetFramework)'=='netcoreapp2.0' or
'$(TargetFramework)'=='netcoreapp1.1' or
'$(TargetFramework)'=='netcoreapp1.0' or
Expand Down

0 comments on commit a2507c0

Please sign in to comment.