Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ctn-malone committed Sep 27, 2021
1 parent 75e3f6d commit acb0428
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Change Log

## [0.3.2]
* feat: add support for passing *JSON* body from a file (`curl.js`)
* feat: add support for passing *raw* body from a file (`curl.js`)

## [0.3.1]
* feat: add support for *JWT* tokens in *curl* requests (`curl.js`)
* feat: add support for *JWT* in *curl* requests (`curl.js`)
* feat: add `error` property to `Curl` (`curl.js`)
* fix: remove progress meter from `Curl.curlError` (`curl.js`)

Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
An exception will be thrown in case a non semver version is passed as argument
*/

const VERSION = '0.3.1';
const VERSION = '0.3.2';

/**
* Check whether or not a version is in semver format
Expand Down
5 changes: 5 additions & 0 deletions test/data/post_json1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"title": "foo",
"body": "bar",
"userId": 1
}

0 comments on commit acb0428

Please sign in to comment.