Skip to content

Commit 6f73019

Browse files
committed
Bump version to 0.8.3
## [0.8.3] - 2023-10-27 ### Fixed - [Dispose not occurring after cancellation](#30) Credits @TheAngryByrd
1 parent a8140b1 commit 6f73019

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.8.3] - 2023-10-27
9+
10+
### Fixed
11+
- [Dispose not occurring after cancellation](https://github.com/TheAngryByrd/IcedTasks/pull/30) Credits @TheAngryByrd
12+
813
## [0.8.2] - 2023-10-22
914

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

237-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.2...HEAD
242+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.3...HEAD
243+
[0.8.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.2...v0.8.3
238244
[0.8.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2
239245
[0.8.2-beta003]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2-beta003
240246
[0.8.2-beta002]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.0...v0.8.2-beta002

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.2")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-22T00:00:00.0000000-04:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.8.2")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.8.2")>]
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")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","2a73a7a9816b6394c6941638844190de1e9a41f4")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","a8140b18c77b8aa5041ad2acc915c7897e5ee63c")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.8.2"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-22T00:00:00.0000000-04:00"
20-
let [<Literal>] AssemblyFileVersion = "0.8.2"
21-
let [<Literal>] AssemblyInformationalVersion = "0.8.2"
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"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "2a73a7a9816b6394c6941638844190de1e9a41f4"
23+
let [<Literal>] AssemblyMetadata_GitHash = "a8140b18c77b8aa5041ad2acc915c7897e5ee63c"

0 commit comments

Comments
 (0)