Skip to content

Commit 69bd8dd

Browse files
committed
v3.0.0
1 parent 6d03c27 commit 69bd8dd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# heeler
22

3+
## 3.0.0
4+
5+
- breaking: Switch to commit-msg hook
6+
37
## 2.0.0
48

59
- breaking: Remove check command, switch to using changelog dir, use MIT license

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "heeler",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"type": "module",
55
"description": "Changelog pre-commit",
66
"bin": {

src/changelog-utils.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,11 @@ export async function prepareRelease() {
5050
let versionBump = "";
5151
const newChangelogLines = [""];
5252

53-
console.log(changelogLines);
54-
5553
for (let existingFile of existingFiles) {
5654
const contents = fs.readFileSync(
5755
path.resolve(process.cwd(), ".changelog", existingFile),
5856
"utf-8",
5957
);
60-
console.log("contents", contents);
6158
const [changeType, message] = contents.split("\n");
6259

6360
if (changeType === "breaking") {

0 commit comments

Comments
 (0)