...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/alreadyexists/alreadyexists_suggest_major.test

Documentation: golang.org/x/exp/cmd/gorelease/testdata/alreadyexists

     1mod=example.com/basic
     2base=v1.0.1
     3success=false
     4# A() was removed, which is a breaking change: it shouldn't try to suggest a
     5# higher version.
     6-- want --
     7# example.com/basic/a
     8## incompatible changes
     9A: removed
    10## compatible changes
    11B: added
    12
    13# summary
    14Cannot suggest a release version.
    15Incompatible changes were detected.
    16-- go.mod --
    17module example.com/basic
    18
    19go 1.12
    20-- a/a.go --
    21package a
    22
    23func B() int { return 0 }
    24

View as plain text