fsprojects / Argu

A declarative CLI argument parser for F#
https://fsprojects.github.io/Argu
MIT License
453 stars 75 forks source link

Bump fsharp.formatting.commandtool from 7.2.9 to 11.5.1 #195

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps fsharp.formatting.commandtool from 7.2.9 to 11.5.1.

Changelog

Sourced from fsharp.formatting.commandtool's changelog.

11.5.1 - 2021-10-30

11.5.0 - 2021-10-30

11.4.4 - 2021-10-11

11.4.3 - 2021-08-17

  • Style blockquotes

11.4.2 - 2021-07-29

11.4.1 - 2021-07-23

11.4.0 - 2021-07-22

11.3.0 - 2021-07-22

11.2.0 - 2021-05-17

  • scrollable navbar #677 by nhirschey
  • Show field type for record fields #674
  • Add --ignoreprojects flag #676 by chengh42

11.1.0 - 2021-04-15

  • Add frontmatter, category, categoryindex, index, title

11.0.4 - 2021-04-15

  • testing package publish

11.0.3 - 2021-04-14

  • testing package publish

... (truncated)

Upgrade guide

Sourced from fsharp.formatting.commandtool's upgrade guide.


category: Advanced categoryindex: 3 index: 1

Upgrading to fsdocs

Here are the typical steps to upgrade a repo based on ProjectScaffold to use fsdocs

  1. Run

    [lang=text]
    dotnet new tool
    dotnet tool install fsdocs-tool
    
  2. Delete all of docs\tools particularly docs\tool\generate.fsx. Keep a copy of any templates for reference as you'll have to copy some bits across to the new template.

  3. Put your docs directory so it reflects the final shape of the site. For example move the content of docs\input\* and docs\files\* directly to docs\*

  4. Follow the notes in styling to start to style your site.

  5. Run

    [lang=text]
    dotnet fsdocs watch
    

    and edit and test your docs.

  6. If using FAKE adjust build.fsx e.g.

    [lang=text]
    Target.create "GenerateDocs" (fun _ ->
       Shell.cleanDir ".fsdocs"
       DotNet.exec id "fsdocs" "build --clean" |> ignore
    )
    

    Target.create "ReleaseDocs" (fun _ -> Git.Repository.clone "" projectRepo "temp/gh-pages" Git.Branches.checkoutBranch "temp/gh-pages" "gh-pages" Shell.copyRecursive "output" "temp/gh-pages" true |> printfn "%A" Git.CommandHelper.runSimpleGitCommand "temp/gh-pages" "add ." |> printfn "%s" let cmd = sprintf """commit -a -m "Update generated documentation for version %s""" release.NugetVersion Git.CommandHelper.runSimpleGitCommand "temp/gh-pages" cmd |> printfn "%s" Git.Branches.push "temp/gh-pages" )

  7. Consider creating docs\_template.fsx and docs\_template.ipynb to enable co-generation of F# scripts and F# notebooks.

    If you add support for notebooks and scripts, consider adding mybinder links to each of your literate executable content pages. For example like this.

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
nojaf commented 9 months ago

I'll port this to fsdocs-tool later this week.

dependabot[bot] commented 9 months ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.