Skip to content

Commit db0b55b

Browse files
committed
Bump version to 0.11.7
## [0.11.7] - 2024-07-10 ### Fixed - [Fix Disposes not happening on cancellation](#50) - Credits @TheAngryByrd
1 parent d094fc1 commit db0b55b

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.7] - 2024-07-10
9+
10+
### Fixed
11+
- [Fix Disposes not happening on cancellation](https://github.com/TheAngryByrd/IcedTasks/pull/50) - Credits @TheAngryByrd
12+
813
## [0.11.6] - 2024-05-08
914

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

314-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.6...HEAD
319+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.7...HEAD
320+
[0.11.7]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.6...v0.11.7
315321
[0.11.6]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.5...v0.11.6
316322
[0.11.5]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.4...v0.11.5
317323
[0.11.4]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...v0.11.4

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.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")>]
7+
[<assembly: AssemblyVersionAttribute("0.11.7")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-07-10T00:00:00.0000000-04:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.7")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.11.7")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","c01c152f2dc6917194272694e9637b091e629d7b")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","d094fc1db78827f3156d68ffa4585f619a99e714")>]
1313
do ()
1414

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

0 commit comments

Comments
 (0)