Skip to content

Commit 26b0639

Browse files
committed
Update links
1 parent 17e44c8 commit 26b0639

16 files changed

Lines changed: 136 additions & 136 deletions

.github/ISSUE_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
Please read and follow this instructions before submitting an issue:
66

7-
- Read all our documentation, specially the [README](https://github.com/mzabriskie/axios/blob/master/README.md). It may contain information that helps you solve your issue.
8-
- Ensure your issue isn't already [reported](https://github.com/mzabriskie/axios/issues?utf8=%E2%9C%93&q=is%3Aissue).
7+
- Read all our documentation, specially the [README](https://github.com/axios/axios/blob/master/README.md). It may contain information that helps you solve your issue.
8+
- Ensure your issue isn't already [reported](https://github.com/axios/axios/issues?utf8=%E2%9C%93&q=is%3Aissue).
99
- If you aren't sure that the issue is caused by axios or you just need for help, please use [Stack Overflow](https://stackoverflow.com/questions/tagged/axios) or [our chat](https://gitter.im/mzabriskie/axios).
1010
- If you're reporting a bug, ensure it isn't already fixed in the latest axios version.
11-
- If you need a new feature there's a chance it's already implemented in a [library](https://github.com/mzabriskie/axios/blob/master/ECOSYSTEM.md) or you can implement it using [interceptors](https://github.com/mzabriskie/axios#interceptors).
11+
- If you need a new feature there's a chance it's already implemented in a [library](https://github.com/axios/axios/blob/master/ECOSYSTEM.md) or you can implement it using [interceptors](https://github.com/axios/axios#interceptors).
1212

1313
*^^^ Delete the instructions before submitting the issue ^^^*
1414

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Please read and follow this instructions before creating and submitting a pull r
66

77
- Create an issue explaining the feature. It could save you some effort in case we don't consider it should be included in axios.
88
- If you're fixing a bug, try to commit the failing test/s and the code fixing it in different commits.
9-
- Ensure you're following our [contributing guide](https://github.com/mzabriskie/axios/blob/master/CONTRIBUTING.md).
9+
- Ensure you're following our [contributing guide](https://github.com/axios/axios/blob/master/CONTRIBUTING.md).
1010

1111
*^^^ Delete the instructions before submitting the pull request ^^^*
1212

CHANGELOG.md

Lines changed: 109 additions & 109 deletions
Large diffs are not rendered by default.

COLLABORATOR_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
As a collaborator you will be involved with axios with some administrative responsibilities. This guide will help you understand your role and the responsibilities that come with being a collaborator.
44

5-
1. __Adhere to and help enforce the Code of Conduct.__ It is expected that you have read the [code of conduct](https://github.com/mzabriskie/axios/blob/master/CODE_OF_CONDUCT.md) and that you agree to live by it. This community should be friendly and welcoming.
5+
1. __Adhere to and help enforce the Code of Conduct.__ It is expected that you have read the [code of conduct](https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md) and that you agree to live by it. This community should be friendly and welcoming.
66

77
1. __Triage issues.__ As a collaborator you may help sort through the issues that are reported. Issues vary from bugs, regressions, feature requests, questions, etc. Apply the appropriate label(s) and respond as needed. If it is a legitimate request please address it, otherwise feel free to close the issue and include a comment with a suggestion on where to find support. If an issue has been inactive for more than a week (i.e, the owner of the issue hasn’t responded to you), close the issue with a note indicating stales issues are closed; it can always be reopened if needed. In the case of issues that require a code change encourage the owner to submit a PR. For less complex code changes, add a very simple and detailed checklist, apply the “first-timers-only” label, and encourage a newcomer to open source to get involved.
88

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
We are open to, and grateful for, any contributions made by the community. By contributing to axios, you agree to abide by the [code of conduct](https://github.com/mzabriskie/axios/blob/master/CODE_OF_CONDUCT.md).
3+
We are open to, and grateful for, any contributions made by the community. By contributing to axios, you agree to abide by the [code of conduct](https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md).
44

55
### Code Style
66

@@ -35,7 +35,7 @@ Please don't include changes to `dist/` in your pull request. This should only b
3535

3636
### Releasing
3737

38-
Releasing a new version is mostly automated. For now the [CHANGELOG](https://github.com/mzabriskie/axios/blob/master/CHANGELOG.md) requires being updated manually. Once this has been done run the commands below. Versions should follow [semantic versioning](http://semver.org/).
38+
Releasing a new version is mostly automated. For now the [CHANGELOG](https://github.com/axios/axios/blob/master/CHANGELOG.md) requires being updated manually. Once this has been done run the commands below. Versions should follow [semantic versioning](http://semver.org/).
3939

4040
- `npm version <newversion> -m "Releasing %s"`
4141
- `npm publish`

ECOSYSTEM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is a list of axios related libraries and resources. If you have a suggestio
44

55
## Libraries
66

7-
* [moxios](https://github.com/mzabriskie/moxios) - Mock axios requests for testing
7+
* [moxios](https://github.com/axios/moxios) - Mock axios requests for testing
88
* [axios-response-logger](https://github.com/srph/axios-response-logger) - Axios interceptor which logs responses
99
* [axios-mock-adapter](https://github.com/ctimmerm/axios-mock-adapter) — Axios adapter that allows to easily mock requests
1010
* [redux-axios-middleware](https://github.com/svrcekmichal/redux-axios-middleware) - Redux middleware for fetching data with axios HTTP client

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -597,11 +597,11 @@ axios.get('/user?ID=12345');
597597

598598
## Resources
599599

600-
* [Changelog](https://github.com/mzabriskie/axios/blob/master/CHANGELOG.md)
601-
* [Upgrade Guide](https://github.com/mzabriskie/axios/blob/master/UPGRADE_GUIDE.md)
602-
* [Ecosystem](https://github.com/mzabriskie/axios/blob/master/ECOSYSTEM.md)
603-
* [Contributing Guide](https://github.com/mzabriskie/axios/blob/master/CONTRIBUTING.md)
604-
* [Code of Conduct](https://github.com/mzabriskie/axios/blob/master/CODE_OF_CONDUCT.md)
600+
* [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
601+
* [Upgrade Guide](https://github.com/axios/axios/blob/master/UPGRADE_GUIDE.md)
602+
* [Ecosystem](https://github.com/axios/axios/blob/master/ECOSYSTEM.md)
603+
* [Contributing Guide](https://github.com/axios/axios/blob/master/CONTRIBUTING.md)
604+
* [Code of Conduct](https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md)
605605

606606
## Credits
607607

UPGRADE_GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ function myAdapter(config) {
115115
```
116116

117117
See the related commits for more details:
118-
- [Response transformers](https://github.com/mzabriskie/axios/commit/10eb23865101f9347570552c04e9d6211376e25e)
119-
- [Request adapter Promise](https://github.com/mzabriskie/axios/commit/157efd5615890301824e3121cc6c9d2f9b21f94a)
118+
- [Response transformers](https://github.com/axios/axios/commit/10eb23865101f9347570552c04e9d6211376e25e)
119+
- [Request adapter Promise](https://github.com/axios/axios/commit/157efd5615890301824e3121cc6c9d2f9b21f94a)
120120

121121
### 0.5.x -> 0.6.0
122122

@@ -135,7 +135,7 @@ This will polyfill the global environment, and only needs to be done once.
135135

136136
#### `axios.success`/`axios.error`
137137

138-
The `success`, and `error` aliases were deprectated in [0.4.0](https://github.com/mzabriskie/axios/blob/master/CHANGELOG.md#040-oct-03-2014). As of this release they have been removed entirely. Instead please use `axios.then`, and `axios.catch` respectively.
138+
The `success`, and `error` aliases were deprectated in [0.4.0](https://github.com/axios/axios/blob/master/CHANGELOG.md#040-oct-03-2014). As of this release they have been removed entirely. Instead please use `axios.then`, and `axios.catch` respectively.
139139

140140
```js
141141
axios.get('some/url')

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "axios",
33
"main": "./dist/axios.js",
44
"version": "0.16.2",
5-
"homepage": "https://github.com/mzabriskie/axios",
5+
"homepage": "https://github.com/axios/axios",
66
"authors": [
77
"Matt Zabriskie"
88
],

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
To run the examples:
44

5-
1. `git clone https://github.com/mzabriskie/axios.git`
5+
1. `git clone https://github.com/axios/axios.git`
66
2. `cd axios`
77
3. `npm install`
88
4. `grunt build`

0 commit comments

Comments
 (0)