diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..887dd04 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +## 0.2.0 2017.02.18 + +- Config file support with configurable keybindings +- Help popup (F1 key) +- Ignore invalid SSL certs with the --insecure flag +- PATCH request support +- Allow JSON request body (--data-binary flag) +- Colorized JSON response +- Parameter encoding bugfix +- Multiple UI bugfixes + +## 0.1.0 2017.02.11 diff --git a/wuzz.go b/wuzz.go index 19f0171..45a85fd 100644 --- a/wuzz.go +++ b/wuzz.go @@ -28,7 +28,7 @@ import ( "github.com/nwidger/jsoncolor" ) -const VERSION = "0.1.0" +const VERSION = "0.2.0" const TIMEOUT_DURATION = 5 // in seconds const WINDOWS_OS = "windows"