Skip to content

Commit 6428cec

Browse files
committed
v0.3.0
1 parent 1a7c34b commit 6428cec

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## Version v0.3.0
4+
5+
Released on April 26th, 2025.
6+
7+
- Add commit signature feature.
8+
- Add git branch feature.
9+
- Add git blame feature.
10+
- Add git ignore feature.
11+
- Add git mailmap feature.
12+
- Benchmark added: `@napi-rs/simple-git`
13+
14+
We sincerely thank @nnnnoel, @other-yuka for their contributions. We appreciate your great efforts!
15+
316
## Version v0.2.0
417

518
Released on April 6th, 2025.

index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2091,6 +2091,7 @@ export declare class Commit {
20912091
*
20922092
* @param {Mailmap} mailmap - The mailmap to use for mapping
20932093
* @returns Author signature of this commit with mapping applied
2094+
* @throws An error if the operation failed.
20942095
*/
20952096
authorWithMailmap(mailmap: Mailmap): Signature
20962097
/**
@@ -2107,6 +2108,7 @@ export declare class Commit {
21072108
*
21082109
* @param {Mailmap} mailmap - The mailmap to use for mapping
21092110
* @returns Committer signature of this commit with mapping applied
2111+
* @throws An error if the operation failed.
21102112
*/
21112113
committerWithMailmap(mailmap: Mailmap): Signature
21122114
}
@@ -3233,6 +3235,7 @@ export declare class Mailmap {
32333235
*
32343236
* @param {SignaturePayload} signature - Signature to resolve
32353237
* @returns The resolved signature with canonical name and email
3238+
* @throws An error if the operation failed.
32363239
*
32373240
* @category Mailmap/Methods
32383241
*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "es-git",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"files": [

0 commit comments

Comments
 (0)