Skip to content

Releases: TestableIO/System.IO.Abstractions

v8.0.1

18 Jan 22:32
a54cd69

Choose a tag to compare

Reduce target frameworks (#540)

This change reduces the target frameworks this library supports to .NET Standard 2.0 and 2.1.

The goal of this change is to reduce maintenance efforts and get rid of legacy workarounds.

As this is a breaking change for consumers (e.g. no more support from .NET Framework < 4.7) the major version is bumped to 8.

If you need support for older frameworks feel free to stay at v7.1.10 or fork this repo from 86066e0.

v7.1.10

17 Jan 20:05
86066e0

Choose a tag to compare

Merge pull request #539 from System-IO-Abstractions/dependabot/nuget/…

v7.1.8

17 Jan 19:46
7502c74

Choose a tag to compare

Merge pull request #536 from sszakal/add-enumerationoptions-to-idirec…

v7.1.4

13 Jan 07:58

Choose a tag to compare

Bump Nerdbank.GitVersioning from 3.0.28 to 3.0.48

Bumps [Nerdbank.GitVersioning](https://github.com/AArnott/Nerdbank.GitVersioning) from 3.0.28 to 3.0.48.
- [Release notes](https://github.com/AArnott/Nerdbank.GitVersioning/releases)
- [Commits](https://github.com/AArnott/Nerdbank.GitVersioning/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

v7.1.3

06 Jan 20:41
21647c2

Choose a tag to compare

Merge pull request #534 from System-IO-Abstractions/dependabot/nuget/…

v7.1.1

21 Dec 10:34

Choose a tag to compare

Enable File.Replace for all but netstandard1.4

According to the documentation, File.Replace is a part of .NET Standard
2.0 and supported by Core 2.0 and later.

Related to #334 but does not attempt to address all methods that might
be supported by .NET Standard/Core 2.0 and later.

v7.0.16

19 Dec 08:49

Choose a tag to compare

Try triggering stale bot

v7.0.15

05 Dec 00:31

Choose a tag to compare

Rotate NuGet publishing key

v7.0.7

21 Oct 08:29
e973ed2

Choose a tag to compare

Merge pull request #518 from System-IO-Abstractions/dependabot/nuget/…

v7.0.5

11 Oct 20:00

Choose a tag to compare

fix(439): Pattern "*." returns only files with no extension (#516)

* fix(439): Add special case to Directory.GetFilesInternal to return only files without extensions when search pattern is "*."

* Added files with no extension to the existing tests in MockDirectoryTests.

* fix(439): Pattern *. works as System.Directory.

* Fix for case sensitive paths.