Skip to content

Commit 9301abe

Browse files
committed
Bump version to 0.11.6
## [0.11.6] - 2024-05-08 ### Fixed - [Pass CancellationToken from a cancellableTask to GetAsyncEnumerator](#48) - Credits @TheAngryByrd
1 parent c01c152 commit 9301abe

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.11.6] - 2024-05-08
9+
10+
### Fixed
11+
- [Pass CancellationToken from a cancellableTask to GetAsyncEnumerator](https://github.com/TheAngryByrd/IcedTasks/pull/48) - Credits @TheAngryByrd
12+
813
## [0.11.5] - 2024-04-22
914

1015
### Fixed
@@ -306,7 +311,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
306311
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
307312
- Build for netstandard2.0 and netstandard2.1
308313

309-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.5...HEAD
314+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.6...HEAD
315+
[0.11.6]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.5...v0.11.6
310316
[0.11.5]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.4...v0.11.5
311317
[0.11.4]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...v0.11.4
312318
[0.11.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...v0.11.3

src/IcedTasks/AssemblyInfo.fs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("IcedTasks")>]
66
[<assembly: AssemblyProductAttribute("IcedTasks")>]
7-
[<assembly: AssemblyVersionAttribute("0.11.5")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-04-22T00:00:00.0000000-04:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.11.5")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.11.5")>]
7+
[<assembly: AssemblyVersionAttribute("0.11.6")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-05-08T00:00:00.0000000-04:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.6")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.11.6")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","e720a0e8984bb5808a0fdafda1c743615a119f28")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","c01c152f2dc6917194272694e9637b091e629d7b")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.11.5"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-04-22T00:00:00.0000000-04:00"
20-
let [<Literal>] AssemblyFileVersion = "0.11.5"
21-
let [<Literal>] AssemblyInformationalVersion = "0.11.5"
18+
let [<Literal>] AssemblyVersion = "0.11.6"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-05-08T00:00:00.0000000-04:00"
20+
let [<Literal>] AssemblyFileVersion = "0.11.6"
21+
let [<Literal>] AssemblyInformationalVersion = "0.11.6"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "e720a0e8984bb5808a0fdafda1c743615a119f28"
23+
let [<Literal>] AssemblyMetadata_GitHash = "c01c152f2dc6917194272694e9637b091e629d7b"

0 commit comments

Comments
 (0)