Skip to content

Commit 4f4c0e0

Browse files
committed
Bump version to 0.11.0
## [0.11.0] - 2024-01-30 ### Added - [Use Microsoft.Bcl.AsyncInterfaces in netstandard2.0](#39) This allows for IAsyncDisposable, IAsyncEnumerable, and IAsyncEnumerator, and ValueTask to be used in netstandard2.0. Credits @TheAngryByrd.
1 parent 8c7b766 commit 4f4c0e0

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.11.0] - 2024-01-30
9+
10+
### Added
11+
- [Use Microsoft.Bcl.AsyncInterfaces in netstandard2.0](https://github.com/TheAngryByrd/IcedTasks/pull/39) This allows for IAsyncDisposable, IAsyncEnumerable, and IAsyncEnumerator, and ValueTask to be used in netstandard2.0. Credits @TheAngryByrd.
12+
813
## [0.10.2] - 2024-01-28
914

1015
### Changed
@@ -281,7 +286,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
281286
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
282287
- Build for netstandard2.0 and netstandard2.1
283288

284-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.2...HEAD
289+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...HEAD
290+
[0.11.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.2...v0.11.0
285291
[0.10.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...v0.10.2
286292
[0.10.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...v0.10.1
287293
[0.10.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.2...v0.10.0

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.10.2")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-01-28T00:00:00.0000000-05:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.10.2")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.10.2")>]
7+
[<assembly: AssemblyVersionAttribute("0.11.0")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-01-30T00:00:00.0000000-05:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.11.0")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.11.0")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","bd902a004123985885b43150b85ce46c80c2e082")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","8c7b766ff8f5a22f4d7e0e4bbb10207f815853d2")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.10.2"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-01-28T00:00:00.0000000-05:00"
20-
let [<Literal>] AssemblyFileVersion = "0.10.2"
21-
let [<Literal>] AssemblyInformationalVersion = "0.10.2"
18+
let [<Literal>] AssemblyVersion = "0.11.0"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-01-30T00:00:00.0000000-05:00"
20+
let [<Literal>] AssemblyFileVersion = "0.11.0"
21+
let [<Literal>] AssemblyInformationalVersion = "0.11.0"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "bd902a004123985885b43150b85ce46c80c2e082"
23+
let [<Literal>] AssemblyMetadata_GitHash = "8c7b766ff8f5a22f4d7e0e4bbb10207f815853d2"

0 commit comments

Comments
 (0)