Skip to content

Commit

Permalink
Bump version to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Huachao committed Dec 1, 2016
1 parent 3c55e05 commit 7a89120
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.11.0 (2016/12/1)
* __Bug Fix__: [Wrap long strings in preview panel](https://github.com/Huachao/vscode-restclient/issues/24)
* __Bug Fix__: [Cancel processing reqeust](https://github.com/Huachao/vscode-restclient/issues/48)
* __Bug Fix__: [Allow refresh from results view](https://github.com/Huachao/vscode-restclient/issues/50)
* __Bug Fix__: [Messy code in the response view when access the unicode website](https://github.com/Huachao/vscode-restclient/issues/51)

## 0.10.6 (2016/11/28)
* __Bug Fix__: Fix regression bug to respect proxy setting

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
REST Client allows you to send HTTP request and view the response in Visual Studio Code directly.

## Main Features
* Send __HTTP request__ in editor and view response in a separate pane with syntax highlight
* Send/Cancel/Rerun __HTTP request__ in editor and view response in a separate pane with syntax highlight
* Send __CURL command__ in editor
* Auto save and view/clear request history
* Support _MULTIPLE_ requests in the same file
Expand Down Expand Up @@ -132,6 +132,12 @@ authorization: token xxx
< ./demo.xml
```

### Cancel Request
Once you want to cancel a processing request, use shortcut `Ctrl+Alt+Q`(`Cmd+Alt+Q` for macOS), or press `F1` and then select/type `Rest Client: Cancel Request`.

### Rerun Last Request
Sometimes you may want to refresh the API response, now you could do it simply using shortcut `Ctrl+Alt+L`(`Cmd+Alt+L` for macOS), or press `F1` and then select/type `Rest Client: Rerun Last Request` to rerun last request.

## Making CURL Request
![CURL Request](images/curl-request.png)
We add the capability to directly run [curl request](https://curl.haxx.se/) in REST Client extension. The issuing request command is the same as raw HTTp one. REST Client will automatically parse the request with specified parser.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "rest-client",
"displayName": "REST Client",
"description": "REST Client for Visual Studio Code",
"version": "0.10.6",
"version": "0.11.0",
"publisher": "humao",
"author": {
"name": "Huachao Mao",
Expand Down

0 comments on commit 7a89120

Please sign in to comment.