Skip to content

Commit cc7c384

Browse files
committed
Bump version to 0.8.4
## [0.8.4] - 2023-10-28 ### Fixed - [TryFinallyAsync implementation ignores potential exceptions in TryFinally](#31) Credits @TheAngryByrd
1 parent c72b134 commit cc7c384

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.8.4] - 2023-10-28
9+
10+
### Fixed
11+
12+
- [TryFinallyAsync implementation ignores potential exceptions in TryFinally](https://github.com/TheAngryByrd/IcedTasks/pull/31) Credits @TheAngryByrd
13+
814
## [0.8.3] - 2023-10-27
915

1016
### Fixed
@@ -239,7 +245,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
239245
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
240246
- Build for netstandard2.0 and netstandard2.1
241247

242-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.3...HEAD
248+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.4...HEAD
249+
[0.8.4]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.3...v0.8.4
243250
[0.8.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.2...v0.8.3
244251
[0.8.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2
245252
[0.8.2-beta003]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2-beta003

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.8.3")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-27T00:00:00.0000000-04:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.8.3")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.8.3")>]
7+
[<assembly: AssemblyVersionAttribute("0.8.4")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-28T00:00:00.0000000-04:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.8.4")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.8.4")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","a8140b18c77b8aa5041ad2acc915c7897e5ee63c")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","c72b1347ae2a926d67cc60c0d870a272c4227667")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.8.3"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-27T00:00:00.0000000-04:00"
20-
let [<Literal>] AssemblyFileVersion = "0.8.3"
21-
let [<Literal>] AssemblyInformationalVersion = "0.8.3"
18+
let [<Literal>] AssemblyVersion = "0.8.4"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-28T00:00:00.0000000-04:00"
20+
let [<Literal>] AssemblyFileVersion = "0.8.4"
21+
let [<Literal>] AssemblyInformationalVersion = "0.8.4"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "a8140b18c77b8aa5041ad2acc915c7897e5ee63c"
23+
let [<Literal>] AssemblyMetadata_GitHash = "c72b1347ae2a926d67cc60c0d870a272c4227667"

0 commit comments

Comments
 (0)