|
2 | 2 | All notable changes will be documented in this file. |
3 | 3 | `version-bump-prompt` adheres to [Semantic Versioning](http://semver.org/). |
4 | 4 |
|
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) |
6 | 6 |
|
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)! |
8 | 8 |
|
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) |
10 | 10 |
|
11 | 11 |
|
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) |
13 | 13 |
|
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)! |
15 | 15 |
|
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) |
17 | 17 |
|
18 | 18 |
|
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) |
20 | 20 |
|
21 | 21 | - 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. |
22 | 22 |
|
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) |
24 | 24 |
|
25 | 25 |
|
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) |
27 | 27 |
|
28 | 28 | Two big changes in this version: |
29 | 29 |
|
30 | 30 | - Dropped support for Node v0.x |
31 | 31 | - 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: |
33 | 33 | - The `preversion` script runs before the version is updated (and before the version prompt is shown) |
34 | 34 | - The `version` script runs after the version is updated, but _before_ `git commit` and `git tag` |
35 | 35 | - The `postversion` script runs after `git commit` and `git tag`, but _before_ `git push` |
36 | 36 |
|
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) |
38 | 38 |
|
39 | 39 |
|
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) |
41 | 41 |
|
42 | 42 | A couple of changes to make `version-bump-prompt` behave more like the `npm version` command: |
43 | 43 |
|
44 | 44 | - 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). |
45 | 45 |
|
46 | 46 | - 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). |
47 | 47 |
|
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) |
0 commit comments