Skip to content

Commit

Permalink
Bump version to 0.11.4
Browse files Browse the repository at this point in the history
## [0.11.4] - 2024-04-06

### Changed
- [Cleanup WhileAsync and other implementations](#44) - Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed Apr 6, 2024
1 parent c78fd63 commit 0849049
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.4] - 2024-04-06

### Changed
- [Cleanup WhileAsync and other implementations](https://github.com/TheAngryByrd/IcedTasks/pull/44) - Credits @TheAngryByrd

## [0.11.3] - 2024-02-07

### Removed
Expand Down Expand Up @@ -296,7 +301,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
- Build for netstandard2.0 and netstandard2.1

[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.4...HEAD
[0.11.4]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...v0.11.4
[0.11.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...v0.11.3
[0.11.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.2
[0.11.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.1
Expand Down
20 changes: 10 additions & 10 deletions src/IcedTasks/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("IcedTasks")>]
[<assembly: AssemblyProductAttribute("IcedTasks")>]
[<assembly: AssemblyVersionAttribute("0.11.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-02-07T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.3")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.3")>]
[<assembly: AssemblyVersionAttribute("0.11.4")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-04-06T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.4")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.4")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c060b79620398b21c742b0ea475c84f91d52c0ec")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c78fd63b638839e545f3a0772b226b9d723cee3a")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.11.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-02-07T00:00:00.0000000-05:00"
let [<Literal>] AssemblyFileVersion = "0.11.3"
let [<Literal>] AssemblyInformationalVersion = "0.11.3"
let [<Literal>] AssemblyVersion = "0.11.4"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-04-06T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.11.4"
let [<Literal>] AssemblyInformationalVersion = "0.11.4"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "c060b79620398b21c742b0ea475c84f91d52c0ec"
let [<Literal>] AssemblyMetadata_GitHash = "c78fd63b638839e545f3a0772b226b9d723cee3a"

0 comments on commit 0849049

Please sign in to comment.