Skip to content

Commit 33501c0

Browse files
authored
fix(sidekick/rust): GA is spelled stable (#2011)
At least that is how you spell it in the `.repo-metadata.json` files.
1 parent 88abd0d commit 33501c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/sidekick/internal/rust/annotate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func (m *modelAnnotations) IsGaxiCrate() bool {
7777
// ReleaseLevelIsGA returns true if the ReleaseLevel attribute indicates this
7878
// is a GA library.
7979
func (m *modelAnnotations) ReleaseLevelIsGA() bool {
80-
return m.ReleaseLevel == "GA"
80+
return m.ReleaseLevel == "GA" || m.ReleaseLevel == "stable"
8181
}
8282

8383
type serviceAnnotations struct {

0 commit comments

Comments
 (0)