Skip to content

Commit 4e28ff8

Browse files
committed
Bump version to 0.11.5
## [0.11.5] - 2024-04-22 ### Fixed - [Fix AsyncEx.AwaitTask cancellation](#46) - Credits @TheAngryByrd
1 parent e720a0e commit 4e28ff8

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.5] - 2024-04-22
9+
10+
### Fixed
11+
- [Fix AsyncEx.AwaitTask cancellation](https://github.com/TheAngryByrd/IcedTasks/pull/46) - Credits @TheAngryByrd
12+
813
## [0.11.4] - 2024-04-06
914

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

304-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.4...HEAD
309+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.5...HEAD
310+
[0.11.5]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.4...v0.11.5
305311
[0.11.4]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...v0.11.4
306312
[0.11.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...v0.11.3
307313
[0.11.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.2

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.4")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-04-06T00:00:00.0000000-04:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.11.4")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.11.4")>]
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")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","c78fd63b638839e545f3a0772b226b9d723cee3a")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","e720a0e8984bb5808a0fdafda1c743615a119f28")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.11.4"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-04-06T00:00:00.0000000-04:00"
20-
let [<Literal>] AssemblyFileVersion = "0.11.4"
21-
let [<Literal>] AssemblyInformationalVersion = "0.11.4"
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"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "c78fd63b638839e545f3a0772b226b9d723cee3a"
23+
let [<Literal>] AssemblyMetadata_GitHash = "e720a0e8984bb5808a0fdafda1c743615a119f28"

0 commit comments

Comments
 (0)