Skip to content

Commit

Permalink
version v0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamashou committed Dec 23, 2024
1 parent 8fece25 commit e7045c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions clientgenv2/source_generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,12 @@ func (rs ResponseFieldList) SortByName() ResponseFieldList {
}

type StructGenerator struct {
currentResponseFieldList ResponseFieldList // Create fields based on this ResponseFieldList
preMergedStructSources []*StructSource // Struct sources that will no longer be created due to merging
postMergedStructSources []*StructSource // Struct sources that will be created due to merging
// Create fields based on this ResponseFieldList
currentResponseFieldList ResponseFieldList
// Struct sources that will no longer be created due to merging
preMergedStructSources []*StructSource
// Struct sources that will be created due to merging
postMergedStructSources []*StructSource
}

func NewStructGenerator(responseFieldList ResponseFieldList) *StructGenerator {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/urfave/cli/v2"
)

const version = "0.29.0"
const version = "0.30.0"

var versionCmd = &cli.Command{
Name: "version",
Expand Down

0 comments on commit e7045c0

Please sign in to comment.