Skip to content

Commit

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

### Fixed
- [Fix paralleism in merge sources (`and!`)](#41) - Credits @TheAngryByrd
  • Loading branch information
TheAngryByrd committed Feb 7, 2024
1 parent 9920ee3 commit c62b757
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.1] - 2024-02-07

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

## [0.11.0] - 2024-01-30

### Added
Expand Down Expand Up @@ -286,7 +291,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.0...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.11.1...HEAD
[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
[0.10.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...v0.10.2
[0.10.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...v0.10.1
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.11.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-01-30T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.0")>]
[<assembly: AssemblyVersionAttribute("0.11.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-02-07T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.11.1")>]
[<assembly: AssemblyInformationalVersionAttribute("0.11.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","8c7b766ff8f5a22f4d7e0e4bbb10207f815853d2")>]
[<assembly: AssemblyMetadataAttribute("GitHash","9920ee30712a959ce2b5ff6be068d0b3615d70ac")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.11.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-01-30T00:00:00.0000000-05:00"
let [<Literal>] AssemblyFileVersion = "0.11.0"
let [<Literal>] AssemblyInformationalVersion = "0.11.0"
let [<Literal>] AssemblyVersion = "0.11.1"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-02-07T00:00:00.0000000-05:00"
let [<Literal>] AssemblyFileVersion = "0.11.1"
let [<Literal>] AssemblyInformationalVersion = "0.11.1"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "8c7b766ff8f5a22f4d7e0e4bbb10207f815853d2"
let [<Literal>] AssemblyMetadata_GitHash = "9920ee30712a959ce2b5ff6be068d0b3615d70ac"

0 comments on commit c62b757

Please sign in to comment.