Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 66db269317 | |||
| d3cf78aacb | |||
| 605055eb76 | |||
| e4ba7dab53 | |||
| 85649a71a6 | |||
| d30071e3d7 |
47
CHANGELOG.md
Normal file
47
CHANGELOG.md
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
Generation of this changelog is based on commits
|
||||||
|
|
||||||
|
## v1.1.2
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
|
||||||
|
- [85649a71a] - **commands**: change changelog output text
|
||||||
|
|
||||||
|
## v1.1.1
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- [7a5880d21] - **commands**: incorrect changelog version generation
|
||||||
|
|
||||||
|
## v1.1.0
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- [`8e5158726`] - **commands**: add release and changelog commands
|
||||||
|
|
||||||
|
## v1.0.0
|
||||||
|
|
||||||
|
### Breaking
|
||||||
|
|
||||||
|
- [7ef777bb2] - use commander for command management
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
|
||||||
|
- [b07d9aaaa] - change question formatting, improve readme
|
||||||
|
|
||||||
|
## v1.0.0-alpha.1
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- [`b5ca3152c`] - add support for body (#1)
|
||||||
|
- [`ce0c01347`] - initial commit
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- [2be2887ce] - make commit body wrap properly
|
||||||
|
- [e9d3c5e29] - incorrect config parsing
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
|
||||||
|
- [4e16104d6] - change intro and outro messages
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@resultium/rcz",
|
"name": "@resultium/rcz",
|
||||||
"version": "1.1.1",
|
"version": "1.1.3",
|
||||||
"description": "Resultium commit standardization library, based on conventional commits",
|
"description": "Resultium commit standardization library, based on conventional commits",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
@@ -208,6 +208,7 @@ program
|
|||||||
let parsedCommitStacks: Array<CommitStack> = [];
|
let parsedCommitStacks: Array<CommitStack> = [];
|
||||||
|
|
||||||
console.log("# Changelog");
|
console.log("# Changelog");
|
||||||
|
console.log("Generation of this changelog is based on commits");
|
||||||
|
|
||||||
for (const commit of commits) {
|
for (const commit of commits) {
|
||||||
const tag = semver.sort(
|
const tag = semver.sort(
|
||||||
@@ -296,7 +297,7 @@ program
|
|||||||
: firstMessageLine[0];
|
: firstMessageLine[0];
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`${showHashes ? `- [${"`"}${shortHash}${"`"}]` : ``} - ${
|
`${showHashes ? `- [${shortHash}]` : ``} - ${
|
||||||
type ? `**${type}**: ${briefMessage}` : briefMessage
|
type ? `**${type}**: ${briefMessage}` : briefMessage
|
||||||
}`
|
}`
|
||||||
);
|
);
|
||||||
@@ -316,7 +317,7 @@ program
|
|||||||
: firstMessageLine[0];
|
: firstMessageLine[0];
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`${showHashes ? `- [${"`"}${shortHash}${"`"}]` : ``} - ${
|
`${showHashes ? `- [${shortHash}]` : ``} - ${
|
||||||
type ? `**${type}**: ${briefMessage}` : briefMessage
|
type ? `**${type}**: ${briefMessage}` : briefMessage
|
||||||
}`
|
}`
|
||||||
);
|
);
|
||||||
@@ -336,7 +337,7 @@ program
|
|||||||
: firstMessageLine[0];
|
: firstMessageLine[0];
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`${showHashes ? `- [${"`"}${shortHash}${"`"}]` : ``} - ${
|
`${showHashes ? `- [${shortHash}]` : ``} - ${
|
||||||
type ? `**${type}**: ${briefMessage}` : briefMessage
|
type ? `**${type}**: ${briefMessage}` : briefMessage
|
||||||
}`
|
}`
|
||||||
);
|
);
|
||||||
@@ -356,7 +357,7 @@ program
|
|||||||
: firstMessageLine[0];
|
: firstMessageLine[0];
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`${showHashes ? `- [${"`"}${shortHash}${"`"}]` : ``} - ${
|
`${showHashes ? `- [${shortHash}]` : ``} - ${
|
||||||
type ? `**${type}**: ${briefMessage}` : briefMessage
|
type ? `**${type}**: ${briefMessage}` : briefMessage
|
||||||
}`
|
}`
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user