Skip to content

Commit

Permalink
Bump version to 0.11.6
Browse files Browse the repository at this point in the history
## [0.11.6] - 2024-05-08

### Fixed
- [Pass CancellationToken from a cancellableTask to GetAsyncEnumerator](#48) - Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed May 8, 2024
1 parent c01c152 commit 9301abe
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.6] - 2024-05-08

### Fixed
- [Pass CancellationToken from a cancellableTask to GetAsyncEnumerator](https://github.com/TheAngryByrd/IcedTasks/pull/48) - Credits @TheAngryByrd

## [0.11.5] - 2024-04-22

### Fixed
Expand Down Expand Up @@ -306,7 +311,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.5...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.6...HEAD
[0.11.6]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.5...v0.11.6
[0.11.5]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.4...v0.11.5
[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
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.5")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-04-22T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.5")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.5")>]
[<assembly: AssemblyVersionAttribute("0.11.6")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-05-08T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.6")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.6")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","e720a0e8984bb5808a0fdafda1c743615a119f28")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c01c152f2dc6917194272694e9637b091e629d7b")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.11.5"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-04-22T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.11.5"
let [<Literal>] AssemblyInformationalVersion = "0.11.5"
let [<Literal>] AssemblyVersion = "0.11.6"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-05-08T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.11.6"
let [<Literal>] AssemblyInformationalVersion = "0.11.6"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "e720a0e8984bb5808a0fdafda1c743615a119f28"
let [<Literal>] AssemblyMetadata_GitHash = "c01c152f2dc6917194272694e9637b091e629d7b"

0 comments on commit 9301abe

Please sign in to comment.