Skip to content

Commit

Permalink
Release note and build updates
Browse files Browse the repository at this point in the history
  • Loading branch information
1eyewonder committed Dec 7, 2023
1 parent bb5299c commit 26134bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 2.0.0-alpha - 2023-12-06
- Convert library to .NET Standard 2.0
- Namespace reorganization
- Namespace reorganization for better ergonomics (Only need to `open Fs.Units` now)
- Project folder restructure
- Add build project
- Add dotnet tooling
Expand Down
7 changes: 2 additions & 5 deletions build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,13 @@ let publishNuget _ =
| _ -> p.ApiKey // assume paket-config was set properly
})

let remote = Environment.environVarOrDefault "FSTK_GIT_REMOTE" "origin"

let gitRelease _ =

Git.Staging.stageFile "" "RELEASE_NOTES.md" |> ignore
Git.Staging.stageAll ""
Git.Commit.exec "" (sprintf "Bump version to %s\n\n%s" release.NugetVersion releaseNotes)
Git.Branches.push ""

Git.Branches.tag "" release.NugetVersion
Git.Branches.pushTag "" remote release.NugetVersion
Git.Branches.pushTag "" "origin" release.NugetVersion

let githubRelease _ =
let token =
Expand Down

0 comments on commit 26134bf

Please sign in to comment.