Skip to content

Commit

Permalink
Bump version to 4.11.0
Browse files Browse the repository at this point in the history
- [Added sequence and traverse VOptionM](#233) Credits @1eyewonder
  • Loading branch information
TheAngryByrd committed Nov 11, 2023
1 parent 0fcf42b commit a0fa859
Show file tree
Hide file tree
Showing 12 changed files with 704 additions and 40 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

### 4.11.0 - November 11, 2023
- [Added sequence and traverse VOptionM](https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/233) Credits @1eyewonder

### 4.10.0 - October 16, 2023
- [Added traverse and sequence functions for Option](https://github.com/demystifyfp/FsToolkit.ErrorHandling/pull/231) Credits @1eyewonder

Expand Down
8 changes: 4 additions & 4 deletions src/FsToolkit.ErrorHandling.AsyncSeq/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsToolkit.ErrorHandling.AsyncSeq")>]
[<assembly: AssemblyProductAttribute("FsToolkit.ErrorHandling")>]
[<assembly: AssemblyDescriptionAttribute("FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.")>]
[<assembly: AssemblyVersionAttribute("4.10.0")>]
[<assembly: AssemblyFileVersionAttribute("4.10.0")>]
[<assembly: AssemblyVersionAttribute("4.11.0")>]
[<assembly: AssemblyFileVersionAttribute("4.11.0")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsToolkit.ErrorHandling.AsyncSeq"
let [<Literal>] AssemblyProduct = "FsToolkit.ErrorHandling"
let [<Literal>] AssemblyDescription = "FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling."
let [<Literal>] AssemblyVersion = "4.10.0"
let [<Literal>] AssemblyFileVersion = "4.10.0"
let [<Literal>] AssemblyVersion = "4.11.0"
let [<Literal>] AssemblyFileVersion = "4.11.0"
let [<Literal>] AssemblyConfiguration = "Release"
8 changes: 4 additions & 4 deletions src/FsToolkit.ErrorHandling.IcedTasks/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsToolkit.ErrorHandling.IcedTasks")>]
[<assembly: AssemblyProductAttribute("FsToolkit.ErrorHandling")>]
[<assembly: AssemblyDescriptionAttribute("FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling.")>]
[<assembly: AssemblyVersionAttribute("4.10.0")>]
[<assembly: AssemblyFileVersionAttribute("4.10.0")>]
[<assembly: AssemblyVersionAttribute("4.11.0")>]
[<assembly: AssemblyFileVersionAttribute("4.11.0")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsToolkit.ErrorHandling.IcedTasks"
let [<Literal>] AssemblyProduct = "FsToolkit.ErrorHandling"
let [<Literal>] AssemblyDescription = "FsToolkit.ErrorHandling is a utility library to work with the Result type in F#, and allows you to do clear, simple and powerful error handling."
let [<Literal>] AssemblyVersion = "4.10.0"
let [<Literal>] AssemblyFileVersion = "4.10.0"
let [<Literal>] AssemblyVersion = "4.11.0"
let [<Literal>] AssemblyFileVersion = "4.11.0"
let [<Literal>] AssemblyConfiguration = "Release"
Loading

0 comments on commit a0fa859

Please sign in to comment.