Skip to content

Commit

Permalink
Bump version to 0.8.3
Browse files Browse the repository at this point in the history
## [0.8.3] - 2023-10-27

### Fixed
- [Dispose not occurring after cancellation](#30) Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed Oct 27, 2023
1 parent a8140b1 commit 6f73019
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.8.3] - 2023-10-27

### Fixed
- [Dispose not occurring after cancellation](https://github.com/TheAngryByrd/IcedTasks/pull/30) Credits @TheAngryByrd

## [0.8.2] - 2023-10-22

### Fixed
Expand Down Expand Up @@ -234,7 +239,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.8.2...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.3...HEAD
[0.8.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.2...v0.8.3
[0.8.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2
[0.8.2-beta003]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2-beta003
[0.8.2-beta002]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2-beta002
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.8.2")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-22T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.8.2")>]
[<assembly: AssemblyInformationalVersionAttribute("0.8.2")>]
[<assembly: AssemblyVersionAttribute("0.8.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-27T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.8.3")>]
[<assembly: AssemblyInformationalVersionAttribute("0.8.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","2a73a7a9816b6394c6941638844190de1e9a41f4")>]
[<assembly: AssemblyMetadataAttribute("GitHash","a8140b18c77b8aa5041ad2acc915c7897e5ee63c")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.8.2"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-22T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.8.2"
let [<Literal>] AssemblyInformationalVersion = "0.8.2"
let [<Literal>] AssemblyVersion = "0.8.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-27T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.8.3"
let [<Literal>] AssemblyInformationalVersion = "0.8.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "2a73a7a9816b6394c6941638844190de1e9a41f4"
let [<Literal>] AssemblyMetadata_GitHash = "a8140b18c77b8aa5041ad2acc915c7897e5ee63c"

0 comments on commit 6f73019

Please sign in to comment.