Skip to content

Commit 49d4fbd

Browse files
committed
Bump version to 0.11.3
## [0.11.3] - 2024-02-07 ### Removed - [Accidental addition of AwaiterOfResult](c060b79) - Credits @TheAngryByrd
1 parent c060b79 commit 49d4fbd

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ 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.3] - 2024-02-07
9+
10+
### Removed
11+
- [Accidental addition of AwaiterOfResult](https://github.com/TheAngryByrd/IcedTasks/commit/c060b79620398b21c742b0ea475c84f91d52c0ec) - Credits @TheAngryByrd
12+
813
## [0.11.2] - 2024-02-07
914

1015
### Fixed
11-
- [Fix paralleism in merge sources (`and!`)](https://github.com/TheAngryByrd/IcedTasks/pull/41) - Credits @TheAngryByrd
16+
- [Fix parallelism in merge sources (`and!`)](https://github.com/TheAngryByrd/IcedTasks/pull/41) - Credits @TheAngryByrd
1217

1318
## [0.11.0] - 2024-01-30
1419

@@ -291,7 +296,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
291296
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
292297
- Build for netstandard2.0 and netstandard2.1
293298

294-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...HEAD
299+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...HEAD
300+
[0.11.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...v0.11.3
295301
[0.11.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.2
296302
[0.11.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.1
297303
[0.11.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.2...v0.11.0

src/IcedTasks/AssemblyInfo.fs

Lines changed: 8 additions & 8 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.2")>]
7+
[<assembly: AssemblyVersionAttribute("0.11.3")>]
88
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-02-07T00:00:00.0000000-05:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.11.2")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.3")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.11.3")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","d537f9a2565af132a11c9c31d5c5977f6993481d")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","c060b79620398b21c742b0ea475c84f91d52c0ec")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.11.2"
18+
let [<Literal>] AssemblyVersion = "0.11.3"
1919
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-02-07T00:00:00.0000000-05:00"
20-
let [<Literal>] AssemblyFileVersion = "0.11.2"
21-
let [<Literal>] AssemblyInformationalVersion = "0.11.2"
20+
let [<Literal>] AssemblyFileVersion = "0.11.3"
21+
let [<Literal>] AssemblyInformationalVersion = "0.11.3"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "d537f9a2565af132a11c9c31d5c5977f6993481d"
23+
let [<Literal>] AssemblyMetadata_GitHash = "c060b79620398b21c742b0ea475c84f91d52c0ec"

0 commit comments

Comments
 (0)