git-semver-tags 2.0.0 → 2.0.2

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/git-semver-tags@2.0.1...git-semver-tags@2.0.2) (2018-11-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * bad release of git-semver-tags ([8827ae4](https://github.com/conventional-changelog/conventional-changelog/commit/8827ae4))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/git-semver-tags@2.0.0...git-semver-tags@2.0.1) (2018-11-01)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * Upgrade to Lerna 3, fix Node.js v11 error ([#385](https://github.com/conventional-changelog/conventional-changelog/issues/385)) ([cdef282](https://github.com/conventional-changelog/conventional-changelog/commit/cdef282))
23
+
24
+
25
+
26
+
27
+
6
28
  <a name="2.0.0"></a>
7
29
  # [2.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/git-semver-tags@1.3.6...git-semver-tags@2.0.0) (2018-05-29)
8
30
 
package/README.md CHANGED
@@ -11,7 +11,6 @@
11
11
  $ npm install --save git-semver-tags
12
12
  ```
13
13
 
14
-
15
14
  ## Usage
16
15
 
17
16
  ```js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-semver-tags",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Get all git semver tags of your repository in reverse chronological order",
5
5
  "bugs": {
6
6
  "url": "https://github.com/conventional-changelog/conventional-changelog/issues"
@@ -35,16 +35,11 @@
35
35
  "meow": "^4.0.0",
36
36
  "semver": "^5.5.0"
37
37
  },
38
- "devDependencies": {
39
- "git-dummy-commit": "^1.2.0",
40
- "shelljs": "^0.8.0"
41
- },
42
38
  "scripts": {
43
- "lint": "eslint --fix .",
44
- "test": "npm run-script lint && mocha --timeout 30000",
45
39
  "test-windows": "mocha --timeout 30000"
46
40
  },
47
41
  "bin": {
48
42
  "git-semver-tags": "cli.js"
49
- }
43
+ },
44
+ "gitHead": "80ee156a3d42409c7e9d0bc3ff0eed134cb1c529"
50
45
  }