diff --git a/CHANGELOG.md b/CHANGELOG.md index d77a6df7..6a128905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -683,19 +683,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release -[Unreleased]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.34.1...HEAD -[0.34.1]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.34.0...v0.34.1 -[0.34.0]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.33.0...v0.34.0 -[0.33.0]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0 -[0.33.0-alpha009]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha009 -[0.33.0-alpha008]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha008 -[0.33.0-alpha007]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha007 -[0.33.0-alpha006]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha006 -[0.33.0-alpha005]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha005 -[0.33.0-alpha004]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha004 -[0.33.0-alpha003]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha003 -[0.33.0-alpha002]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha002 -[0.33.0-alpha001]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha001 +[Unreleased]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.34.1...HEAD +[0.34.1]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.34.0...v0.34.1 +[0.34.0]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.33.0...v0.34.0 +[0.33.0]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0 +[0.33.0-alpha009]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha009 +[0.33.0-alpha008]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha008 +[0.33.0-alpha007]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha007 +[0.33.0-alpha006]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha006 +[0.33.0-alpha005]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha005 +[0.33.0-alpha004]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha004 +[0.33.0-alpha003]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha003 +[0.33.0-alpha002]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha002 +[0.33.0-alpha001]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha001 [0.32.0]: https://github.com/TheAngryByrd/MiniScaffold/compare/0.31.1...0.32.0 [0.32.0-beta001]: https://github.com/TheAngryByrd/MiniScaffold/compare/0.31.1...0.32.0-beta001 [0.31.1]: https://github.com/TheAngryByrd/MiniScaffold/compare/0.31.0...0.31.1 diff --git a/Content/Library/build/build.fs b/Content/Library/build/build.fs index 0849f70c..5c0c5840 100644 --- a/Content/Library/build/build.fs +++ b/Content/Library/build/build.fs @@ -104,9 +104,9 @@ let watchDocsDir = let gitOwner = "MyGithubUsername" let gitRepoName = "MyLib.1" -let gitHubRepoUrl = sprintf "https://github.com/%s/%s/" gitOwner gitRepoName +let gitHubRepoUrl = sprintf "https://github.com/%s/%s" gitOwner gitRepoName -let documentationUrl = sprintf "https://%s.github.io/%s/" gitOwner gitRepoName +let documentationRootUrl = sprintf "https://%s.github.io/%s/" gitOwner gitRepoName let releaseBranch = "MyReleaseBranch" let readme = "README.md" @@ -244,7 +244,7 @@ module DocsTool = Parameters = Some [ // https://fsprojects.github.io/FSharp.Formatting/content.html#Templates-and-Substitutions - "root", quoted documentationUrl + "root", quoted documentationRootUrl "fsdocs-collection-name", quoted productName "fsdocs-repository-branch", quoted releaseBranch "fsdocs-package-version", quoted latestEntry.NuGetVersion diff --git a/build/build.fs b/build/build.fs index 74c99a8b..f0dedc71 100644 --- a/build/build.fs +++ b/build/build.fs @@ -88,9 +88,9 @@ let watchDocsDir = let gitOwner = "TheAngryByrd" let gitRepoName = "MiniScaffold" -let gitHubRepoUrl = sprintf "https://github.com/%s/%s/" gitOwner gitRepoName +let gitHubRepoUrl = sprintf "https://github.com/%s/%s" gitOwner gitRepoName -let documentationUrl = "https://www.jimmybyrd.me/MiniScaffold/" +let documentationRootUrl = "https://www.jimmybyrd.me/MiniScaffold/" let releaseBranch = "master" let readme = "README.md" @@ -211,7 +211,7 @@ module DocsTool = Parameters = Some [ // https://fsprojects.github.io/FSharp.Formatting/content.html#Templates-and-Substitutions - "root", quoted documentationUrl + "root", quoted documentationRootUrl "fsdocs-collection-name", quoted productName "fsdocs-repository-branch", quoted releaseBranch "fsdocs-repository-link", quoted (gitHubRepoUrl)