Skip to content

Commit

Permalink
Bump version to 0.11.3
Browse files Browse the repository at this point in the history
## [0.11.3] - 2024-02-07

### Removed
- [Accidental addition of AwaiterOfResult](c060b79) - Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed Feb 7, 2024
1 parent c060b79 commit 49d4fbd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 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.11.3] - 2024-02-07

### Removed
- [Accidental addition of AwaiterOfResult](https://github.com/TheAngryByrd/IcedTasks/commit/c060b79620398b21c742b0ea475c84f91d52c0ec) - Credits @TheAngryByrd

## [0.11.2] - 2024-02-07

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

## [0.11.0] - 2024-01-30

Expand Down Expand Up @@ -291,7 +296,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.11.2...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.3...HEAD
[0.11.3]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.2...v0.11.3
[0.11.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.2
[0.11.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.2...v0.11.0
Expand Down
16 changes: 8 additions & 8 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.11.2")>]
[<assembly: AssemblyVersionAttribute("0.11.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-02-07T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.2")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.2")>]
[<assembly: AssemblyFileVersionAttribute("0.11.3")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","d537f9a2565af132a11c9c31d5c5977f6993481d")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c060b79620398b21c742b0ea475c84f91d52c0ec")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.11.2"
let [<Literal>] AssemblyVersion = "0.11.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-02-07T00:00:00.0000000-05:00"
let [<Literal>] AssemblyFileVersion = "0.11.2"
let [<Literal>] AssemblyInformationalVersion = "0.11.2"
let [<Literal>] AssemblyFileVersion = "0.11.3"
let [<Literal>] AssemblyInformationalVersion = "0.11.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "d537f9a2565af132a11c9c31d5c5977f6993481d"
let [<Literal>] AssemblyMetadata_GitHash = "c060b79620398b21c742b0ea475c84f91d52c0ec"

0 comments on commit 49d4fbd

Please sign in to comment.