Skip to content

Commit

Permalink
Release v1.100.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnCodr committed Nov 24, 2023
1 parent 727d855 commit 8569c11
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Fli
[![build](https://github.com/CaptnCodr/Fli/actions/workflows/build.yml/badge.svg)](https://github.com/CaptnCodr/Fli/actions/workflows/build.yml)
[![Nuget](https://img.shields.io/nuget/v/fli?color=33cc56)](https://www.nuget.org/packages/Fli/)
<img align="right" width="100" src="https://raw.githubusercontent.com/CaptnCodr/Fli/master/logo.png">

Execute CLI commands from your F# code in F# style!

Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.100.0.0 - Nov 24, 2023
- Add .NET8 support (https://github.com/CaptnCodr/Fli/pull/60).
- Add new logo (https://github.com/CaptnCodr/Fli/pull/61).

v1.11.0.0 - Oct 06, 2023
- Add `throw` and `throwIfErrored` functions to interrupt pipeline on error (https://github.com/CaptnCodr/Fli/pull/56).

Expand Down
2 changes: 2 additions & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ cli {
WorkingDirectory "src/"
}
|> Command.execute
|> Output.throwIfErrored
|> Output.toText
|> printfn "%s"

Expand All @@ -29,6 +30,7 @@ cli {
WorkingDirectory "src/"
}
|> Command.execute
|> Output.throwIfErrored
|> Output.toText
|> printfn "%s"

Expand Down
2 changes: 1 addition & 1 deletion src/Fli/Fli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Configurations>Debug;Release</Configurations>
<Version>1.11.0.0</Version>
<Version>1.100.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
5 changes: 3 additions & 2 deletions src/Fli/paket.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ owners
authors
Constantin Tews
version
1.11.0.0
1.100.0.0
readme
README.md
releaseNotes
- Add `throw` and `throwIfErrored` functions to interrupt pipeline on error (https://github.com/CaptnCodr/Fli/pull/56).
- Add .NET8 support (https://github.com/CaptnCodr/Fli/pull/60).
- Add new logo (https://github.com/CaptnCodr/Fli/pull/61).
(All release notes: https://github.com/CaptnCodr/Fli/blob/main/RELEASE_NOTES.md)
projectUrl
https://github.com/CaptnCodr/Fli
Expand Down

0 comments on commit 8569c11

Please sign in to comment.