Skip to content

Commit

Permalink
Bump version to 0.11.7
Browse files Browse the repository at this point in the history
## [0.11.7] - 2024-07-10

### Fixed
- [Fix Disposes not happening on cancellation](#50) - Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed Jul 11, 2024
1 parent d094fc1 commit db0b55b
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.7] - 2024-07-10

### Fixed
- [Fix Disposes not happening on cancellation](https://github.com/TheAngryByrd/IcedTasks/pull/50) - Credits @TheAngryByrd

## [0.11.6] - 2024-05-08

### Fixed
Expand Down Expand Up @@ -311,7 +316,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.6...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.7...HEAD
[0.11.7]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.6...v0.11.7
[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
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.6")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-05-08T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.6")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.6")>]
[<assembly: AssemblyVersionAttribute("0.11.7")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-07-10T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.7")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.7")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c01c152f2dc6917194272694e9637b091e629d7b")>]
[<assembly: AssemblyMetadataAttribute("GitHash","d094fc1db78827f3156d68ffa4585f619a99e714")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
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>] AssemblyVersion = "0.11.7"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-07-10T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.11.7"
let [<Literal>] AssemblyInformationalVersion = "0.11.7"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "c01c152f2dc6917194272694e9637b091e629d7b"
let [<Literal>] AssemblyMetadata_GitHash = "d094fc1db78827f3156d68ffa4585f619a99e714"

0 comments on commit db0b55b

Please sign in to comment.