diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 07ba874..978d142 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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 diff --git a/build/build.fs b/build/build.fs index 76dc5e8..b0f4b7c 100644 --- a/build/build.fs +++ b/build/build.fs @@ -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 =