Skip to content

Commit 819fbc0

Browse files
committed
Bump version to 0.11.2
## [0.11.2] - 2024-02-07 ### Fixed - [Fix paralleism in merge sources (`and!`)](#41) - Credits @TheAngryByrd
1 parent d537f9a commit 819fbc0

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.1] - 2024-02-07
8+
## [0.11.2] - 2024-02-07
99

1010
### Fixed
1111
- [Fix paralleism in merge sources (`and!`)](https://github.com/TheAngryByrd/IcedTasks/pull/41) - Credits @TheAngryByrd
@@ -291,7 +291,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
291291
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
292292
- Build for netstandard2.0 and netstandard2.1
293293

294-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.1...HEAD
294+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...HEAD
295+
[0.11.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.2
295296
[0.11.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.1
296297
[0.11.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.2...v0.11.0
297298
[0.10.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...v0.10.2

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.1")>]
7+
[<assembly: AssemblyVersionAttribute("0.11.2")>]
88
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-02-07T00:00:00.0000000-05:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.11.1")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.11.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.11.2")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","9920ee30712a959ce2b5ff6be068d0b3615d70ac")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","d537f9a2565af132a11c9c31d5c5977f6993481d")>]
1313
do ()
1414

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

0 commit comments

Comments
 (0)