Skip to content

Commit d1643d2

Browse files
committed
Revert string renames
1 parent 3b9a3b6 commit d1643d2

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageIcon>logo.png</PackageIcon>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<PackageTags>f# FSharp Applicative Monad MonadTransformer Arrow Overloading</PackageTags>
16-
<VersionPrefix>1.9.0</VersionPrefix>
16+
<VersionPrefix>1.9.1</VersionPrefix>
1717
<VersionSuffix></VersionSuffix>
1818
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
1919
<Version Condition=" '$(VersionSuffix)' == '' ">$(VersionPrefix)</Version>

RELEASE_NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#### 1.9.0 - January 11 2026
1+
#### 1.9.1 - January 11 2026
2+
23
- Task related function fixes and improvements
34
- Enable try blocks for ValueTask
45
- Add Obj module

RELEASE_NOTES.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
Release Notes for FSharpPlus 1.9.0 - January 11 2026
1+
Release Notes for FSharpPlus 1.9.1 - January 11 2026
22
-----------------------------------------------------
33

4-
Task related function fixes and improvements
5-
Enable try blocks for ValueTask
6-
Add Obj module
7-
Add some error handling functions for Tasks
8-
Add ignore to some common type extensions
9-
Add bindTask and bindInto to Result
10-
Add missing (.>) and (<.) zip-applicative operators
11-
Add Active Pattern for CI strings and AggregateException
12-
Rename non-sequential applicative CEs to zapp
13-
Fix compilation for Fable 4.27
14-
Fix several functions in ResizeArray
15-
Fix Seq.lift3
16-
Fix some XML comments
17-
Drop target framework version net45
4+
- Task related function fixes and improvements
5+
- Enable try blocks for ValueTask
6+
- Add Obj module
7+
- Add some error handling functions for Tasks
8+
- Add ignore to some common type extensions
9+
- Add bindTask and bindInto to Result
10+
- Add missing (.>) and (<.) zip-applicative operators
11+
- Add Active Pattern for CI strings and AggregateException
12+
- Rename non-sequential applicative CEs to zapp
13+
- Fix compilation for Fable 4.27
14+
- Fix several functions in ResizeArray
15+
- Fix Seq.lift3
16+
- Fix some XML comments
17+
- Drop target framework version net45

src/FSharpPlus/Extensions/String.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ module String =
8282
///
8383
/// Note this is distinct from trim which trims the given characters,
8484
/// not white spaces.
85-
let trim (source: string) =
85+
let trimWhiteSpaces (source: string) =
8686
let source = nullArgCheck (nameof source) source
8787

8888
source.Trim ()
@@ -154,7 +154,7 @@ module String =
154154
source.PadRight (totalLength, paddingChar)
155155

156156
/// Removes all leading and trailing occurrences of specified characters from the given string.
157-
let trimBoth (trimChars: char seq) (source: string) =
157+
let trim (trimChars: char seq) (source: string) =
158158
let source = nullArgCheck (nameof source) source
159159

160160
source.Trim (Seq.toArray trimChars)

0 commit comments

Comments
 (0)