diff --git a/doc/2020.2.html b/doc/2020.2.html index 7ad8a261c..fcf6f4f69 100644 --- a/doc/2020.2.html +++ b/doc/2020.2.html @@ -13,6 +13,7 @@
  • Staticcheck 2020.2.1 release notes
  • Staticcheck 2020.2.2 release notes
  • Staticcheck 2020.2.3 release notes
  • +
  • Staticcheck 2020.2.4 release notes
  • Performance improvements

    @@ -600,3 +601,21 @@

    Staticcheck 2020.2.3 release notes

    This release fixes a false positive in U1000. See issue 942 for an example.

    + +

    Staticcheck 2020.2.4 release notes

    + +

    + This release fixes the following issues: +

    + + diff --git a/doc/staticcheck.html b/doc/staticcheck.html index 1f5ed7a67..1f8d61d76 100644 --- a/doc/staticcheck.html +++ b/doc/staticcheck.html @@ -22,12 +22,12 @@

    Installation

    If you use Go modules, you can simply run go get honnef.co/go/tools/cmd/staticcheck to obtain the latest released version. If you're still using a GOPATH-based workflow, then the above command will instead fetch the master branch. - It is suggested that you explicitly check out the latest release tag instead, which is currently 2020.2.3. + It is suggested that you explicitly check out the latest release tag instead, which is currently 2020.2.4. One way of doing so would be as follows:

    cd $GOPATH/src/honnef.co/go/tools/cmd/staticcheck
    -git checkout 2020.2.3
    +git checkout 2020.2.4
     go get
     go install