Skip to content

Commit 52828ff

Browse files
committed
fix(projects): release command add git push
1 parent 8cea197 commit 52828ff

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
# Changelog
22

33

4+
## [v0.4.2](https://github.com/soybeanjs/cli/compare/v0.4.1...main)(2023-06-04)
5+
6+
### 🚀 Features
7+
8+
- **projects**: Add changelog command - by **Soybean** [<samp>(8bc95)</samp>](https://github.com/soybeanjs/cli/commit/8bc95c6)
9+
- **projects**: Generate changelog by total tags - by **Soybean** [<samp>(9ee85)</samp>](https://github.com/soybeanjs/cli/commit/9ee85ff)
10+
- **projects**: Add release command - by **Soybean** [<samp>(00890)</samp>](https://github.com/soybeanjs/cli/commit/008908b)
11+
- **projects**: Changelog version support the latest verison in package.json - by **Soybean** [<samp>(8cea1)</samp>](https://github.com/soybeanjs/cli/commit/8cea197)
12+
13+
### 🐞 Bug Fixes
14+
15+
- **projects**: Fix generate changelog timing - by **Soybean** [<samp>(a6f41)</samp>](https://github.com/soybeanjs/cli/commit/a6f41fe)
16+
- **projects**: Fix release command - by **Soybean** [<samp>(3e3c4)</samp>](https://github.com/soybeanjs/cli/commit/3e3c44f)
17+
- **projects**: Fix execa can't run in commonjs - by **Soybean** [<samp>(646a7)</samp>](https://github.com/soybeanjs/cli/commit/646a7b3)
18+
19+
### 📖 Documentation
20+
21+
- **projects**: Update CHANGELOG.md title - by **Soybean** [<samp>(4085e)</samp>](https://github.com/soybeanjs/cli/commit/4085eb7)
22+
23+
### ❤️ Contributors
24+
25+
<a href="https://github.com/" data-hovercard-type="user" data-hovercard-url="/users/yanbowe/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self">
26+
<img src="https://github.com/.png?size=48" alt="@" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
27+
</a>
28+
429
## [v0.4.1](https://github.com/soybeanjs/cli/compare/v0.4.0...v0.4.1)(2023-06-04)
530

631
### 🐞 Bug Fixes

src/command/release.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export async function release() {
66
execute: 'npx soy changelog',
77
all: true,
88
tag: true,
9-
commit: 'chore(projects): release v%s'
9+
commit: 'chore(projects): release v%s',
10+
push: true
1011
});
1112
}

0 commit comments

Comments
 (0)