Skip to content

Commit 38a5442

Browse files
updated URLs
1 parent 2119eb0 commit 38a5442

4 files changed

Lines changed: 25 additions & 25 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/James-Messinger/eslint-config-modular
3+
# https://github.com/JS-DevTools/eslint-config-modular
44

55
root: true
66

CHANGELOG.md

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

5-
## [v4.2.0](https://github.com/James-Messinger/version-bump-prompt/tree/v4.2.0) (2018-09-30)
5+
## [v4.2.0](https://github.com/JS-DevTools/version-bump-prompt/tree/v4.2.0) (2018-09-30)
66

7-
- Output of [npm version scripts](https://docs.npmjs.com/cli/version) is now shown. Thanks to [@didoo](https://github.com/didoo) for [the PR](https://github.com/James-Messinger/version-bump-prompt/pull/27)!
7+
- Output of [npm version scripts](https://docs.npmjs.com/cli/version) is now shown. Thanks to [@didoo](https://github.com/didoo) for [the PR](https://github.com/JS-DevTools/version-bump-prompt/pull/27)!
88

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

1111

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

14-
- 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)!
14+
- Added `--lock` option to update the `package-json.lock` file in addition to manifest files. See [issue #20](https://github.com/JS-DevTools/version-bump-prompt/issues/20) for details. Thanks to [@browniebroke](https://github.com/browniebroke) for [the PR](https://github.com/JS-DevTools/version-bump-prompt/pull/23/files)!
1515

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

1818

19-
## [v4.0.0](https://github.com/James-Messinger/version-bump-prompt/tree/v4.0.0) (2017-11-15)
19+
## [v4.0.0](https://github.com/JS-DevTools/version-bump-prompt/tree/v4.0.0) (2017-11-15)
2020

2121
- 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.
2222

23-
[Full Changelog](https://github.com/James-Messinger/version-bump-prompt/compare/v3.0.0...v4.0.0)
23+
[Full Changelog](https://github.com/JS-DevTools/version-bump-prompt/compare/v3.0.0...v4.0.0)
2424

2525

26-
## [v3.0.0](https://github.com/James-Messinger/version-bump-prompt/tree/v3.0.0) (2016-12-25)
26+
## [v3.0.0](https://github.com/JS-DevTools/version-bump-prompt/tree/v3.0.0) (2016-12-25)
2727

2828
Two big changes in this version:
2929

3030
- Dropped support for Node v0.x
3131
- The `--prompt` option now allows you to manually enter a version, rather than only selecting from the listed options
32-
- 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:
32+
- 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/JS-DevTools/version-bump-prompt/pull/17))<br> The scripts are run the same order as the `npm version` command:
3333
- The `preversion` script runs before the version is updated (and before the version prompt is shown)
3434
- The `version` script runs after the version is updated, but _before_ `git commit` and `git tag`
3535
- The `postversion` script runs after `git commit` and `git tag`, but _before_ `git push`
3636

37-
[Full Changelog](https://github.com/James-Messinger/version-bump-prompt/compare/v2.0.0...v3.0.0)
37+
[Full Changelog](https://github.com/JS-DevTools/version-bump-prompt/compare/v2.0.0...v3.0.0)
3838

3939

40-
## [v2.0.0](https://github.com/James-Messinger/version-bump-prompt/tree/v2.0.0) (2016-11-29)
40+
## [v2.0.0](https://github.com/JS-DevTools/version-bump-prompt/tree/v2.0.0) (2016-11-29)
4141

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

4444
- 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).
4545

4646
- 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).
4747

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
"Alexey Raspopov (https://github.com/alexeyraspopov)",
2323
"James Messinger (https://jamesmessinger.com)"
2424
],
25-
"homepage": "https://github.com/James-Messinger/version-bump-prompt",
25+
"homepage": "https://github.com/JS-DevTools/version-bump-prompt",
2626
"license": "MIT",
2727
"repository": {
2828
"type": "git",
29-
"url": "https://github.com/James-Messinger/version-bump-prompt.git"
29+
"url": "https://github.com/JS-DevTools/version-bump-prompt.git"
3030
},
3131
"main": "lib/index.js",
3232
"files": [

readme.md

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

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)
3+
[![Build Status](https://api.travis-ci.org/JS-DevTools/version-bump-prompt.svg?branch=master)](https://travis-ci.org/JS-DevTools/version-bump-prompt)
4+
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/JS-DevTools/version-bump-prompt?svg=true&branch=master&failingText=Windows%20build%20failing&passingText=Windows%20build%20passing)](https://ci.appveyor.com/project/JamesMessinger/version-bump-prompt/branch/master)
55

6-
[![Coverage Status](https://coveralls.io/repos/github/James-Messinger/version-bump-prompt/badge.svg?branch=master)](https://coveralls.io/github/James-Messinger/version-bump-prompt)
7-
[![Codacy Score](https://api.codacy.com/project/badge/Grade/69891525ae984781996106144fda276c)](https://www.codacy.com/public/jamesmessinger/version-bump-prompt)
8-
[![Inline docs](https://inch-ci.org/github/James-Messinger/version-bump-prompt.svg?branch=master&style=shields)](https://inch-ci.org/github/James-Messinger/version-bump-prompt)
9-
[![Dependencies](https://david-dm.org/James-Messinger/version-bump-prompt.svg)](https://david-dm.org/James-Messinger/version-bump-prompt)
6+
[![Coverage Status](https://coveralls.io/repos/github/JS-DevTools/version-bump-prompt/badge.svg?branch=master)](https://coveralls.io/github/JS-DevTools/version-bump-prompt)
7+
[![Codacy Score](https://api.codacy.com/project/badge/Grade/69891525ae984781996106144fda276c)](https://www.codacy.com/public/JamesMessinger/version-bump-prompt)
8+
[![Inline docs](https://inch-ci.org/github/JS-DevTools/version-bump-prompt.svg?branch=master&style=shields)](https://inch-ci.org/github/JS-DevTools/version-bump-prompt)
9+
[![Dependencies](https://david-dm.org/JS-DevTools/version-bump-prompt.svg)](https://david-dm.org/JS-DevTools/version-bump-prompt)
1010

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

14-
![Screenshot](https://jamesmessinger.com/version-bump-prompt/img/screenshot.gif)
14+
![Screenshot](https://jsdevtools.org/version-bump-prompt/img/screenshot.gif)
1515

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

@@ -87,13 +87,13 @@ Version Scripts
8787

8888
Contributing
8989
--------------------------
90-
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).
90+
I welcome any contributions, enhancements, and bug-fixes. [File an issue](https://github.com/JS-DevTools/version-bump-prompt/issues) on GitHub and [submit a pull request](https://github.com/JS-DevTools/version-bump-prompt/pulls).
9191

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

9595
1. __Clone this repo__<br>
96-
`git clone https://github.com/James-Messinger/version-bump-prompt.git`
96+
`git clone https://github.com/JS-DevTools/version-bump-prompt.git`
9797

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

0 commit comments

Comments
 (0)