diff --git a/CHANGELOG.md b/CHANGELOG.md index 887dd04..382daa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.3.0 2017.03.07 + +- Request header autocompletion +- Configurable statusline +- JSON requests with `-j`/`--json` flags +- Allow insecure HTTPS requests (`-k`/`--insecure` flags) +- Socks proxy support (`-x`/`--proxy` flags) +- Disable following redirects (`-R`/`--disable-redirects` flags) +- Enhanced TLS support (`-T`/`--tls`, `-1`/`--tlsv1`, `--tlsv1.0`, `--tlsv1.1`, `--tlsv1.2` flags) +- Commands for line and word deletion +- Home/end navigation fix + ## 0.2.0 2017.02.18 - Config file support with configurable keybindings @@ -10,3 +22,5 @@ - Multiple UI bugfixes ## 0.1.0 2017.02.11 + +Initial release diff --git a/docs/images/screencast.gif b/docs/images/screencast.gif index 01f4373..b1e6be3 100644 Binary files a/docs/images/screencast.gif and b/docs/images/screencast.gif differ diff --git a/wuzz.go b/wuzz.go index f430955..b44ef03 100644 --- a/wuzz.go +++ b/wuzz.go @@ -28,7 +28,7 @@ import ( "github.com/mattn/go-runewidth" ) -const VERSION = "0.2.0" +const VERSION = "0.3.0" const TIMEOUT_DURATION = 5 // in seconds const WINDOWS_OS = "windows"