Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
albertwoo committed Oct 19, 2023
1 parent 185a14b commit 47368e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [1.0.1] - 2023-10-19

- Add failIfNoActiveSubStage to stage
- Add Changelog helper
- Add Windows IIS deploy helper
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Every **step** is just a **async<Result<unit, string>>**, string is for the erro
## Minimal example and conventions

```fsharp
#r "nuget: Fun.Build, 1.0.0"
#r "nuget: Fun.Build, 1.0.1"
open Fun.Build
pipeline "demo" {
Expand Down Expand Up @@ -66,8 +66,7 @@ dotnet fsi build.fsx -- -p your_pipeline -h
Below example covered most of the apis and usage example, take it as the documents😊:

```fsharp
#r "nuget: Fun.Result"
#r "nuget: Fun.Build, 1.0.0"
#r "nuget: Fun.Build, 1.0.1"
open Fun.Result
open Fun.Build
Expand Down Expand Up @@ -160,6 +159,7 @@ pipeline "Fun.Build" {
}
stage "FailIfIgnored" {
failIfIgnored // When set this, the stage cannot be ignored
failIfNoActiveSubStage // If the stage has no active sub stage when executing it will throw exception
whenCmdArg "arg2"
echo "Got here!"
}
Expand Down

0 comments on commit 47368e4

Please sign in to comment.