[enh] v0.2.0

This commit is contained in:
Adam Tauber 2017-02-18 00:21:12 +01:00
parent ee71867550
commit f34c82a438
2 changed files with 13 additions and 1 deletions

12
CHANGELOG.md Normal file
View File

@ -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

View File

@ -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"