conventional-changelog-beemo
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -1,3 +0,9 @@ | ||
## 1.1.0 - 2019-04-4 | ||
### 1.1.1 - 2019-04-08 | ||
#### 🐞 Fixes | ||
- Allow uppercase characters in commit message scope. | ||
## 1.1.0 - 2019-04-04 | ||
#### 🚀 Updates | ||
@@ -4,0 +10,0 @@ |
export default function checkCommitFormat(commit) { | ||
const match = commit.match(/^(break|build|ci|docs|feature|fix|internal|misc|new|release|revert|security|style|test|update)(?:\(([a-z0-9\-.,]+)\))?:/u); | ||
const match = commit.match(/^(break|build|ci|docs|feature|fix|internal|misc|new|release|revert|security|style|test|update)(?:\(([a-zA-Z0-9\-.,]+)\))?:/u); | ||
@@ -4,0 +4,0 @@ if (!match) { |
@@ -7,3 +7,3 @@ "use strict"; | ||
function checkCommitFormat(commit) { | ||
const match = commit.match(/^(break|build|ci|docs|feature|fix|internal|misc|new|release|revert|security|style|test|update)(?:\(([a-z0-9\-.,]+)\))?:/u); | ||
const match = commit.match(/^(break|build|ci|docs|feature|fix|internal|misc|new|release|revert|security|style|test|update)(?:\(([a-zA-Z0-9\-.,]+)\))?:/u); | ||
@@ -10,0 +10,0 @@ if (!match) { |
{ | ||
"name": "conventional-changelog-beemo", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Conventional changelog preset for Beemo and associated projects.", | ||
@@ -32,4 +32,4 @@ "keywords": [ | ||
"devDependencies": { | ||
"@milesj/build-tools": "^0.37.3", | ||
"@types/node": "^11.13.0", | ||
"@milesj/build-tools": "^0.39.0", | ||
"@types/node": "^11.13.1", | ||
"@types/shelljs": "^0.8.4", | ||
@@ -36,0 +36,0 @@ "conventional-changelog-core": "^3.1.6", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24411