Skip to content

Commit e8136b1

Browse files
committed
Releasing 0.7.0
1 parent 87d8364 commit e8136b1

File tree

8 files changed

+122
-62
lines changed

8 files changed

+122
-62
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,13 @@
7979
- Fixing issue preventing `length` to be used as a parameter ([#91](https://github.com/mzabriskie/axios/pull/91))
8080
- Fixing issue with IE8 ([#85](https://github.com/mzabriskie/axios/pull/85))
8181
- Converting build to UMD
82+
83+
### 0.7.0 (Sep 29, 2015)
84+
85+
- Fixing issue with minified bundle in IE8 ([#87](https://github.com/mzabriskie/axios/pull/87))
86+
- Adding support for passing agent in node ([#102](https://github.com/mzabriskie/axios/pull/102))
87+
- Adding support for returning result from `axios.spread` for chaining ([#106](https://github.com/mzabriskie/axios/pull/106))
88+
- Fixing typescript definition ([#105](https://github.com/mzabriskie/axios/pull/105))
89+
- Fixing default timeout config for node ([#112](https://github.com/mzabriskie/axios/pull/112))
90+
- Adding support for use in web workers, and react-native ([#70](https://github.com/mzabriskie/axios/issue/70)), ([#98](https://github.com/mzabriskie/axios/pull/98))
91+
- Adding support for fetch like API `axios(url[, config])` ([#116](https://github.com/mzabriskie/axios/issues/116))

axios.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for Axios v0.6.0
1+
// Type definitions for Axios v0.7.0
22
// Project: https://github.com/mzabriskie/axios
33

44

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "axios",
33
"main": "./dist/axios.js",
4-
"version": "0.6.0",
4+
"version": "0.7.0",
55
"homepage": "https://github.com/mzabriskie/axios",
66
"authors": [
77
"Matt Zabriskie"

dist/axios.js

+105-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.map

+1-1
Large diffs are not rendered by default.

dist/axios.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.map

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "axios",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "Promise based HTTP client for the browser and node.js",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)