light-release
Advanced tools
Comparing version 2.7.1 to 2.7.2
@@ -0,1 +1,6 @@ | ||
## [2.7.2] - February 18, 2025 | ||
### Changes | ||
- Release notes generated for version [2.7.2](.release-notes/2.7.2/release.md) | ||
## [2.7.1] - February 12, 2025 | ||
@@ -2,0 +7,0 @@ |
@@ -30,4 +30,4 @@ const { execSync } = require('child_process'); | ||
const commitLogCommand = lastCommitHash ? `git log ${lastCommitHash}..HEAD --pretty=format:"\$\$\$\$§§§§%H|%s%b|%ae|%an|%cd\$\$\$\$" --numstat` : | ||
'git log --pretty=format:"\$\$\$\$§§§§%H|%s%b|%ae|%an|%cd\$\$\$\$" --numstat'; | ||
const commitLogCommand = lastCommitHash ? `git log ${lastCommitHash}..HEAD --pretty=format:"££££§§§§%H|%s%b|%ae|%an|%cd££££" --numstat` : | ||
'git log --pretty=format:"££££§§§§%H|%s%b|%ae|%an|%cd££££" --numstat'; | ||
const commitLog = execSync(commitLogCommand, { encoding: 'utf8' }); | ||
@@ -37,3 +37,3 @@ const commits = []; | ||
commitLog.split('\$\$\$\$').forEach((line) => { | ||
commitLog.split('££££').forEach((line) => { | ||
if (line.includes('§§§§')) { | ||
@@ -40,0 +40,0 @@ const [hash, message, email, author, date] = line.split('|'); |
{ | ||
"name": "light-release", | ||
"version": "2.7.1", | ||
"version": "2.7.2", | ||
"description": "A lightweight tool to automate your release process, compatible with conventional commit messages. It reads your commit history, determines the release type, and generates release notes without unnecessary dependencies.", | ||
@@ -5,0 +5,0 @@ "bin": { |
491957
75
718