Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoyak committed Sep 14, 2023
1 parent 8d2be79 commit 03fe0e6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
26 changes: 13 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Content/Library/build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 03fe0e6

Please sign in to comment.