Skip to content

Commit ed16f42

Browse files
committed
Bump version to 0.10.0
## [0.10.0] - 2023-11-21 ### Added - [IAsyncEnumerable support](#37) Credits @TheAngryByrd.
1 parent 1a2a4be commit ed16f42

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
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.10.0] - 2023-11-21
9+
10+
### Added
11+
- [IAsyncEnumerable support](https://github.com/TheAngryByrd/IcedTasks/pull/37) Credits @TheAngryByrd.
12+
813
## [0.9.2] - 2023-11-09
914

1015
### Fixed
11-
- [Type Inference for CancellableTask<unit>](https://github.com/TheAngryByrd/IcedTasks/pull/36)
16+
- [Type Inference for CancellableTask<unit>](https://github.com/TheAngryByrd/IcedTasks/pull/36) Credits @TheAngryByrd.
1217

1318
## [0.9.1] - 2023-11-07
1419

@@ -270,7 +275,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
270275
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
271276
- Build for netstandard2.0 and netstandard2.1
272277

273-
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.2...HEAD
278+
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...HEAD
279+
[0.10.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.2...v0.10.0
274280
[0.9.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.1...v0.9.2
275281
[0.9.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.0...v0.9.1
276282
[0.9.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.5...v0.9.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.9.2")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-11-09T00:00:00.0000000-05:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("0.9.2")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("0.9.2")>]
7+
[<assembly: AssemblyVersionAttribute("0.10.0")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-11-21T00:00:00.0000000-05:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("0.10.0")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","5c745d01818227b2e645cbb9a6d23b859c2f80cb")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","1a2a4bef6ae206275604eb18cb939557ac5a43fd")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "IcedTasks"
1717
let [<Literal>] AssemblyProduct = "IcedTasks"
18-
let [<Literal>] AssemblyVersion = "0.9.2"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-11-09T00:00:00.0000000-05:00"
20-
let [<Literal>] AssemblyFileVersion = "0.9.2"
21-
let [<Literal>] AssemblyInformationalVersion = "0.9.2"
18+
let [<Literal>] AssemblyVersion = "0.10.0"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-11-21T00:00:00.0000000-05:00"
20+
let [<Literal>] AssemblyFileVersion = "0.10.0"
21+
let [<Literal>] AssemblyInformationalVersion = "0.10.0"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "5c745d01818227b2e645cbb9a6d23b859c2f80cb"
23+
let [<Literal>] AssemblyMetadata_GitHash = "1a2a4bef6ae206275604eb18cb939557ac5a43fd"

0 commit comments

Comments
 (0)