From ed47d6b3106542c56812a805da3e6852254c78f2 Mon Sep 17 00:00:00 2001 From: James Nylen Date: Sun, 26 Oct 2014 18:39:36 -0500 Subject: [PATCH] Move from mikeal/request to request/request --- README.md | 6 +++--- package.json | 4 ++-- release.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index acecb0d42..12864ca21 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Request — Simplified HTTP client -[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/mikeal/request?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) - [![NPM](https://nodei.co/npm/request.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/request/) +[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/request/request?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + ## Super simple to use Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default. @@ -408,7 +408,7 @@ custom `User-Agent` header as well as https. var request = require('request'); var options = { - url: 'https://api.github.com/repos/mikeal/request', + url: 'https://api.github.com/repos/request/request', headers: { 'User-Agent': 'request' } diff --git a/package.json b/package.json index 98ca902a8..21141aa9d 100755 --- a/package.json +++ b/package.json @@ -11,10 +11,10 @@ "author": "Mikeal Rogers ", "repository": { "type": "git", - "url": "https://github.com/mikeal/request.git" + "url": "https://github.com/request/request.git" }, "bugs": { - "url": "http://github.com/mikeal/request/issues" + "url": "http://github.com/request/request/issues" }, "license": "Apache-2.0", "engines": { diff --git a/release.sh b/release.sh index 05075a14b..1362f52f9 100755 --- a/release.sh +++ b/release.sh @@ -15,7 +15,7 @@ fi npm version minor || exit 1 # Generate changelog from pull requests -github-changes -o mikeal -r request \ +github-changes -o request -r request \ --auth --verbose \ --file CHANGELOG.md \ --only-pulls --use-commit-body \