bump-cli 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/History.md +4 -0
  2. package/Readme.md +5 -5
  3. package/package.json +5 -1
package/History.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v1.1.3 - August 13, 2014
2
+
3
+ * No actual changes; just add `repository` metadata in the npm package.
4
+
1
5
  ## v1.1.2 - August 11, 2014
2
6
 
3
7
  * Fix execution error.
package/Readme.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Bumps semantic versions according to [semver] guidelines.
4
4
 
5
- ![Loading screencast...](http://ricostacruz.com/bump-cli/bump.gif)
5
+ ![Screenshot]( http://cdn.rawgit.com/rstacruz/bump-cli/a251c63/bump.png )
6
6
 
7
7
  [![Status](https://travis-ci.org/rstacruz/bump-cli.svg?branch=master)](https://travis-ci.org/rstacruz/bump-cli)
8
8
 
@@ -25,16 +25,16 @@ Inspired by [@marksteve]'s [bump][bump-py]. `bump-cli` is backwards-compatible
25
25
  [@marksteve]: https://github.com/marksteve
26
26
  [bump-py]: https://github.com/marksteve/bump
27
27
 
28
- ## :copyright:
28
+ :copyright:
29
29
 
30
- **bump-cli** © 2014+, Rico Sta. Cruz. Released under the [MIT License].<br>
31
- Authored and maintained by Rico Sta. Cruz with help from [contributors].
30
+ **bump-cli** © 2014+, Rico Sta. Cruz. Released under the [MIT] License.<br>
31
+ Authored and maintained by Rico Sta. Cruz with help from contributors. [(list)][contributors]
32
32
 
33
33
  > [ricostacruz.com](http://ricostacruz.com) &nbsp;&middot;&nbsp;
34
34
  > GitHub [@rstacruz](https://github.com/rstacruz) &nbsp;&middot;&nbsp;
35
35
  > Twitter [@rstacruz](https://twitter.com/rstacruz)
36
36
 
37
- [MIT License]: http://mit-license.org/
37
+ [MIT]: http://mit-license.org/
38
38
  [contributors]: http://github.com/rstacruz/bump-cli/contributors
39
39
  [semver]: https://www.npmjs.org/package/semver
40
40
  [options]: Help.txt
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "bump-cli",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Increments version numbers in files",
5
5
  "main": "index.js",
6
6
  "directories": {
7
7
  "test": "test"
8
8
  },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/rstacruz/bump-cli.git"
12
+ },
9
13
  "scripts": {
10
14
  "test": "mocha"
11
15
  },