Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Dec 20, 2020
1 parent 7e562c4 commit da655da
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
7 changes: 6 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
### 0.5.0 - 11.04.2020
### 0.6.0 - 20.12.2020

* Update FCS version to 38.0
* Use Ionide.ProjInfo isntead of Dotnet.ProjInfo

### 0.5.0 - 11.07.2020
* Update FCS version to 36.0.3

### 0.4.1 - 11.04.2020
Expand Down
13 changes: 4 additions & 9 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,17 +129,12 @@ Target.create "ReleaseGitHub" (fun _ ->
Git.Branches.pushTag "" remote release.NugetVersion

let client =
let user =
match getBuildParam "github-user" with
let token =
match getBuildParam "github-token" with
| s when not (isNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserInput "Username: "
let pw =
match getBuildParam "github-pw" with
| s when not (isNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserPassword "Password: "
| _ -> UserInput.getUserInput "github API token: "

// Git.createClient user pw
GitHub.createClient user pw
GitHub.createClientWithToken token
let files = !! (buildDir </> "*.nupkg")

// release on github
Expand Down

0 comments on commit da655da

Please sign in to comment.