Skip to content

Commit aa44d17

Browse files
committed
update to 10.1.2
1 parent 46a2197 commit aa44d17

2 files changed

Lines changed: 9 additions & 21 deletions

File tree

DotExtensions.Memory/DotExtensions.Memory.csproj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1212
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1313
<EmbedUntrackedSources>true</EmbedUntrackedSources>
14-
<Version>10.1.1</Version>
14+
<Version>10.1.2</Version>
1515
<Title>DotExtensions.Memory</Title>
1616
<Authors>Alastair Lundy</Authors>
1717
<Copyright>Copyright (c) Alastair Lundy 2025-2026</Copyright>
@@ -21,15 +21,13 @@
2121
<TrimmerSingleWarn>false</TrimmerSingleWarn>
2222
<IsTrimmable>true</IsTrimmable>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
24-
<PackageReleaseNotes>* Fixed a bug where Reverse method would skip the first element of the ReadOnlySpan&lt;T&gt;, Memory&lt;T&gt;, or ReadOnlyMemory&lt;T&gt; to be revesed.
25-
* Fixed a logic bug in SecureString AppendRange SetChars method
26-
* Fixed a bug in Span Optimistic Copy methods</PackageReleaseNotes>
24+
<PackageReleaseNotes>* Updated internal Polyfill version from 9.23.0 to 10.1.1</PackageReleaseNotes>
2725
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2826
<Description>A collection of useful extension members and extension methods for Span and Memory types in .NET.</Description>
2927
<PackageTags>extension-members, extensions, span, memory,</PackageTags>
3028
<PolyArgumentExceptions>true</PolyArgumentExceptions>
31-
<AssemblyVersion>10.1.1</AssemblyVersion>
32-
<FileVersion>10.1.1</FileVersion>
29+
<AssemblyVersion>10.1.2</AssemblyVersion>
30+
<FileVersion>10.1.2</FileVersion>
3331
</PropertyGroup>
3432

3533
<PropertyGroup Condition="$(TargetFramework) != 'netstandard2.0' OR $(TargetFramework) == 'netstandard2.1'">

DotExtensions/DotExtensions.csproj

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,7 @@
1111
<RepositoryUrl>https://github.com/alastairlundy/DotExtensions</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>extensions, extension-members,extension-methods, ienumerable-extensions,</PackageTags>
14-
<PackageReleaseNotes>* Optimisations and improvements to ``GetRandomIOExtensions`` class
15-
* Deprecated ``UnixFileMode`` permission extensions for removal in DotExtensions v11
16-
* Deprecated AccessRulePermission etensions for removal in DotExtensions v11
17-
* Deprecated some Date related extensions for removal in DotExtensions v11
18-
* Fixed a bug in the Version Comparison extension class ``IsOlderThan`` method that would lead to incorrect results being returned
19-
* Fixed a bug in the Version comparison extension class ``IsAtLeast`` method that would lead to incorrect results being returned
20-
* Fixed string insertion off by one errors
21-
* Fixed a bug where the week of month and year calculation methods would undercount the number of days in specified months
22-
* Fixed a bug that prevented valid Unix numeric file notation from being detected
23-
* Fixed a logic bug in Unix file notation parsing
24-
* Fixed off by one errors in ``GetRandomIOExtensions`` class</PackageReleaseNotes>
14+
<PackageReleaseNotes>* Updated internal Polyfill version from 9.23.0 to 10.1.1</PackageReleaseNotes>
2515
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2717
<Description>A collection of useful extension members and extension methods for .NET .</Description>
@@ -30,15 +20,15 @@
3020
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
3121
<EmbedUntrackedSources>true</EmbedUntrackedSources>
3222
<PackageReadmeFile>README.md</PackageReadmeFile>
33-
<Version>10.1.1</Version>
23+
<Version>10.1.2</Version>
3424
<PackageId>DotExtensions</PackageId>
3525
<IsTrimmable>true</IsTrimmable>
3626
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
3727
<TrimmerSingleWarn>false</TrimmerSingleWarn>
3828
<PolyArgumentExceptions>true</PolyArgumentExceptions>
3929
<NoWarn>$(NoWarn);CS0618</NoWarn>
40-
<AssemblyVersion>10.1.1</AssemblyVersion>
41-
<FileVersion>10.1.1</FileVersion>
30+
<AssemblyVersion>10.1.2</AssemblyVersion>
31+
<FileVersion>10.1.2</FileVersion>
4232
</PropertyGroup>
4333

4434
<PropertyGroup Condition="$(TargetFramework) != 'netstandard2.0' OR $(TargetFramework) == 'netstandard2.1'">
@@ -51,7 +41,7 @@
5141
<PackageReference Include="Microsoft.Extensions.Primitives" />
5242
<PackageReference Include="Polyfill" PrivateAssets="all"/>
5343
<PackageReference Include="Meziantou.Analyzer" PrivateAssets="all"/>
54-
<PackageReference Include="System.IO.FileSystem.AccessControl" Condition="$(TargetFramework) == 'netstandard2.0' OR $(TargetFramework) == 'netstandard2.1'"/>
44+
<PackageReference Include="System.IO.FileSystem.AccessControl" Condition="$(TargetFramework) == 'netstandard2.0'"/>
5545
</ItemGroup>
5646

5747
<ItemGroup>

0 commit comments

Comments
 (0)