diff --git a/CHANGELOG.md b/CHANGELOG.md index 77240e2..3d6bf4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v0.2.11 + +- Fixed mis-used rune `[` instead of tokLBracket https://github.com/mununki/gqlmerge/pull/41 + ## v0.2.10 - Fixed build error when the argument name has `input` https://github.com/mununki/gqlmerge/pull/39 diff --git a/command/command.go b/command/command.go index 39e7f57..1714627 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.10", + Version: "v0.2.11", } help := flag.Bool("h", false, "show the help")