diff --git a/CHANGELOG.md b/CHANGELOG.md index 329660d..77240e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v0.2.10 + +- Fixed build error when the argument name has `input` https://github.com/mununki/gqlmerge/pull/39 + ## v0.2.9 - New parser implementation https://github.com/mununki/gqlmerge/pull/35 diff --git a/command/command.go b/command/command.go index 1049e59..39e7f57 100644 --- a/command/command.go +++ b/command/command.go @@ -32,7 +32,7 @@ func (c *Command) Check() error { NotEnoughArgs: "❌ Not enough arguments", OutputFileNeeded: "❌ Output file argument is needed", WrongOption: "❌ Wrong options", - Version: "v0.2.9", + Version: "v0.2.10", } help := flag.Bool("h", false, "show the help")