Skip to content

Commit

Permalink
Bump version to 0.10.0
Browse files Browse the repository at this point in the history
## [0.10.0] - 2023-11-21

### Added
- [IAsyncEnumerable support](#37) Credits @TheAngryByrd.
  • Loading branch information
TheAngryByrd committed Nov 22, 2023
1 parent 1a2a4be commit ed16f42
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0] - 2023-11-21

### Added
- [IAsyncEnumerable support](https://github.com/TheAngryByrd/IcedTasks/pull/37) Credits @TheAngryByrd.

## [0.9.2] - 2023-11-09

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

## [0.9.1] - 2023-11-07

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

[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.2...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...HEAD
[0.10.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.2...v0.10.0
[0.9.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.8.5...v0.9.0
Expand Down
20 changes: 10 additions & 10 deletions src/IcedTasks/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("IcedTasks")>]
[<assembly: AssemblyProductAttribute("IcedTasks")>]
[<assembly: AssemblyVersionAttribute("0.9.2")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-11-09T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.9.2")>]
[<assembly: AssemblyInformationalVersionAttribute("0.9.2")>]
[<assembly: AssemblyVersionAttribute("0.10.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-11-21T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.10.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","5c745d01818227b2e645cbb9a6d23b859c2f80cb")>]
[<assembly: AssemblyMetadataAttribute("GitHash","1a2a4bef6ae206275604eb18cb939557ac5a43fd")>]
do ()

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

0 comments on commit ed16f42

Please sign in to comment.