Skip to content

Commit aa31e04

Browse files
Updated URLs
1 parent a2daf11 commit aa31e04

4 files changed

Lines changed: 22 additions & 22 deletions

File tree

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ESLint config
22
# http://eslint.org/docs/user-guide/configuring
3-
# https://github.com/BigstickCarpet/eslint-config-modular
3+
# https://github.com/James-Messinger/eslint-config-modular
44

55
root: true
66

CHANGELOG.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,40 @@
22
All notable changes will be documented in this file.
33
`version-bump-prompt` adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [v4.1.0](https://github.com/BigstickCarpet/version-bump-prompt/tree/v4.1.0) (2017-11-15)
5+
## [v4.1.0](https://github.com/James-Messinger/version-bump-prompt/tree/v4.1.0) (2017-11-15)
66

7-
- Added `--lock` option to update the `package-json.lock` file in addition to manifest files. See [issue #20](https://github.com/BigstickCarpet/version-bump-prompt/issues/20) for details. Thanks to [@browniebroke](https://github.com/browniebroke) for [the PR](https://github.com/BigstickCarpet/version-bump-prompt/pull/23/files)!
7+
- Added `--lock` option to update the `package-json.lock` file in addition to manifest files. See [issue #20](https://github.com/James-Messinger/version-bump-prompt/issues/20) for details. Thanks to [@browniebroke](https://github.com/browniebroke) for [the PR](https://github.com/James-Messinger/version-bump-prompt/pull/23/files)!
88

9-
[Full Changelog](https://github.com/BigstickCarpet/version-bump-prompt/compare/v4.0.0...v4.1.0)
9+
[Full Changelog](https://github.com/James-Messinger/version-bump-prompt/compare/v4.0.0...v4.1.0)
1010

1111

12-
## [v4.0.0](https://github.com/BigstickCarpet/version-bump-prompt/tree/v4.0.0) (2017-11-15)
12+
## [v4.0.0](https://github.com/James-Messinger/version-bump-prompt/tree/v4.0.0) (2017-11-15)
1313

1414
- Dropped support for Node v4.x since it's no longer supported by [`inquirer`](https://www.npmjs.com/package/inquirer). As a result, Version-Bump-Prompt now only supports Node v6+. You can continue using Version-Bump-Prompt v3.x on Node 4.
1515

16-
[Full Changelog](https://github.com/BigstickCarpet/version-bump-prompt/compare/v3.0.0...v4.0.0)
16+
[Full Changelog](https://github.com/James-Messinger/version-bump-prompt/compare/v3.0.0...v4.0.0)
1717

1818

19-
## [v3.0.0](https://github.com/BigstickCarpet/version-bump-prompt/tree/v3.0.0) (2016-12-25)
19+
## [v3.0.0](https://github.com/James-Messinger/version-bump-prompt/tree/v3.0.0) (2016-12-25)
2020

2121
Two big changes in this version:
2222

2323
- Dropped support for Node v0.x
2424
- The `--prompt` option now allows you to manually enter a version, rather than only selecting from the listed options
25-
- Added support for [npm version scripts](https://docs.npmjs.com/cli/version). (big thanks to [szarouski](https://github.com/szarouski) for his [PR](https://github.com/BigstickCarpet/version-bump-prompt/pull/17))<br> The scripts are run the same order as the `npm version` command:
25+
- Added support for [npm version scripts](https://docs.npmjs.com/cli/version). (big thanks to [szarouski](https://github.com/szarouski) for his [PR](https://github.com/James-Messinger/version-bump-prompt/pull/17))<br> The scripts are run the same order as the `npm version` command:
2626
- The `preversion` script runs before the version is updated (and before the version prompt is shown)
2727
- The `version` script runs after the version is updated, but _before_ `git commit` and `git tag`
2828
- The `postversion` script runs after `git commit` and `git tag`, but _before_ `git push`
2929

30-
[Full Changelog](https://github.com/BigstickCarpet/version-bump-prompt/compare/v2.0.0...v3.0.0)
30+
[Full Changelog](https://github.com/James-Messinger/version-bump-prompt/compare/v2.0.0...v3.0.0)
3131

3232

33-
## [v2.0.0](https://github.com/BigstickCarpet/version-bump-prompt/tree/v2.0.0) (2016-11-29)
33+
## [v2.0.0](https://github.com/James-Messinger/version-bump-prompt/tree/v2.0.0) (2016-11-29)
3434

3535
A couple of changes to make `version-bump-prompt` behave more like the `npm version` command:
3636

3737
- The `--tag` option now creates an [annotated git tag rather than a lightweight tag](https://git-scm.com/book/en/v2/Git-Basics-Tagging#Creating-Tags).
3838

3939
- The `--tag` option now follows the same naming convention as the `npm version` command. The tag name is `vX.X.X` (same as before), and the commit message is `X.X.X` (no "v" prefix).
4040

41-
[Full Changelog](https://github.com/BigstickCarpet/version-bump-prompt/compare/v1.7.2...v2.0.0)
41+
[Full Changelog](https://github.com/James-Messinger/version-bump-prompt/compare/v1.7.2...v2.0.0)

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
],
1717
"author": {
1818
"name": "James Messinger",
19-
"url": "http://bigstickcarpet.com"
19+
"url": "https://jamesmessinger.com"
2020
},
2121
"contributors": [
2222
"Alexey Raspopov (https://github.com/alexeyraspopov)",
23-
"James Messinger (http://bigstickcarpet.com)"
23+
"James Messinger (https://jamesmessinger.com)"
2424
],
25-
"homepage": "https://github.com/BigstickCarpet/version-bump-prompt",
25+
"homepage": "https://github.com/James-Messinger/version-bump-prompt",
2626
"license": "MIT",
2727
"repository": {
2828
"type": "git",
29-
"url": "https://github.com/BigstickCarpet/version-bump-prompt.git"
29+
"url": "https://github.com/James-Messinger/version-bump-prompt.git"
3030
},
3131
"main": "lib/index.js",
3232
"files": [

readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Version-Bump-Prompt
22

3-
[![Build Status](https://api.travis-ci.org/BigstickCarpet/version-bump-prompt.svg?branch=master)](https://travis-ci.org/BigstickCarpet/version-bump-prompt)
4-
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/bigstickcarpet/version-bump-prompt?svg=true&branch=master&failingText=Windows%20build%20failing&passingText=Windows%20build%20passing)](https://ci.appveyor.com/project/BigstickCarpet/version-bump-prompt/branch/master)
3+
[![Build Status](https://api.travis-ci.org/James-Messinger/version-bump-prompt.svg?branch=master)](https://travis-ci.org/James-Messinger/version-bump-prompt)
4+
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/james-messinger/version-bump-prompt?svg=true&branch=master&failingText=Windows%20build%20failing&passingText=Windows%20build%20passing)](https://ci.appveyor.com/project/BigstickCarpet/version-bump-prompt/branch/master)
55

66
[![Codacy Score](https://api.codacy.com/project/badge/Grade/69891525ae984781996106144fda276c)](https://www.codacy.com/public/jamesmessinger/version-bump-prompt)
7-
[![Inline docs](http://inch-ci.org/github/BigstickCarpet/version-bump-prompt.svg?branch=master&style=shields)](http://inch-ci.org/github/BigstickCarpet/version-bump-prompt)
8-
[![Dependencies](https://david-dm.org/BigstickCarpet/version-bump-prompt.svg)](https://david-dm.org/bigstickcarpet/version-bump-prompt)
7+
[![Inline docs](http://inch-ci.org/github/James-Messinger/version-bump-prompt.svg?branch=master&style=shields)](http://inch-ci.org/github/James-Messinger/version-bump-prompt)
8+
[![Dependencies](https://david-dm.org/James-Messinger/version-bump-prompt.svg)](https://david-dm.org/James-Messinger/version-bump-prompt)
99

1010
[![npm](http://img.shields.io/npm/v/version-bump-prompt.svg)](https://www.npmjs.com/package/version-bump-prompt)
1111
[![License](https://img.shields.io/npm/l/version-bump-prompt.svg)](LICENSE)
1212

13-
![Screenshot](http://bigstickcarpet.com/version-bump-prompt/img/screenshot.gif)
13+
![Screenshot](https://jamesmessinger.com/version-bump-prompt/img/screenshot.gif)
1414

1515
#### Automate your release process with a single command that can:
1616

@@ -86,13 +86,13 @@ Version Scripts
8686

8787
Contributing
8888
--------------------------
89-
I welcome any contributions, enhancements, and bug-fixes. [File an issue](https://github.com/BigstickCarpet/version-bump-prompt/issues) on GitHub and [submit a pull request](https://github.com/BigstickCarpet/version-bump-prompt/pulls).
89+
I welcome any contributions, enhancements, and bug-fixes. [File an issue](https://github.com/James-Messinger/version-bump-prompt/issues) on GitHub and [submit a pull request](https://github.com/James-Messinger/version-bump-prompt/pulls).
9090

9191
#### Building
9292
To build the project locally on your computer:
9393

9494
1. __Clone this repo__<br>
95-
`git clone https://github.com/bigstickcarpet/version-bump-prompt.git`
95+
`git clone https://github.com/James-Messinger/version-bump-prompt.git`
9696

9797
2. __Install dependencies__<br>
9898
`npm install`

0 commit comments

Comments
 (0)