Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 5.4.1

## Bug fixes:

- Fix an inadvertently changed signature breaking binary compatibility with 5.3.0

# Version 5.4.0

## New features:
Expand Down
2 changes: 1 addition & 1 deletion SafetyFirst/SafetyFirst.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PropertyGroup>
<PackageId>SafetyFirst</PackageId>
<Title>SafetyFirst</Title>
<PackageVersion>5.4.0</PackageVersion>
<PackageVersion>5.4.1</PackageVersion>
<Authors>nathan wilson</Authors>
<Description>Total functions made convenient for F# and C#</Description>
<PackageReleaseNotes>See release notes in github at https://github.com/ntwilson/SafetyFirst/blob/main/ReleaseNotes.md</PackageReleaseNotes>
Expand Down
4 changes: 2 additions & 2 deletions SafetyFirst/Seq.fs
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ module NonEmpty =
/// //returns ([[1;2;3;100];[100];[4;100];[5;6]])
/// </code>
/// </summary>
let split splitAfter (NonEmpty xs : NonEmptySeq<_>) : NonEmptySeq<NonEmptySeq<_>> =
let split splitAfter (NonEmpty xs) : NonEmptySeq<NonEmptySeq<_>> =
NonEmpty <| split splitAfter xs

/// <summary>
Expand All @@ -1006,7 +1006,7 @@ module NonEmpty =
/// If the source sequence is finite, you can achieve better performance by converting it to
/// a list or array first and using <c>List.splitPairwise</c> or <c>Array.splitPairwise</c> instead.
/// </summary>
let splitPairwise splitBetween (NonEmpty xs: NonEmptySeq<_>) : NonEmptySeq<NonEmptySeq<_>> =
let splitPairwise splitBetween (NonEmpty xs) : NonEmptySeq<NonEmptySeq<_>> =
NonEmpty <| splitPairwise splitBetween xs

type ZipperExpression() =
Expand Down
Loading