File tree 3 files changed +17
-1
lines changed 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
16
## Version v0.2.0
4
17
5
18
Released on April 6th, 2025.
Original file line number Diff line number Diff line change @@ -2091,6 +2091,7 @@ export declare class Commit {
2091
2091
*
2092
2092
* @param {Mailmap } mailmap - The mailmap to use for mapping
2093
2093
* @returns Author signature of this commit with mapping applied
2094
+ * @throws An error if the operation failed.
2094
2095
*/
2095
2096
authorWithMailmap ( mailmap : Mailmap ) : Signature
2096
2097
/**
@@ -2107,6 +2108,7 @@ export declare class Commit {
2107
2108
*
2108
2109
* @param {Mailmap } mailmap - The mailmap to use for mapping
2109
2110
* @returns Committer signature of this commit with mapping applied
2111
+ * @throws An error if the operation failed.
2110
2112
*/
2111
2113
committerWithMailmap ( mailmap : Mailmap ) : Signature
2112
2114
}
@@ -3233,6 +3235,7 @@ export declare class Mailmap {
3233
3235
*
3234
3236
* @param {SignaturePayload } signature - Signature to resolve
3235
3237
* @returns The resolved signature with canonical name and email
3238
+ * @throws An error if the operation failed.
3236
3239
*
3237
3240
* @category Mailmap/Methods
3238
3241
*
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " es-git" ,
3
- "version" : " 0.2 .0" ,
3
+ "version" : " 0.3 .0" ,
4
4
"main" : " index.js" ,
5
5
"types" : " index.d.ts" ,
6
6
"files" : [
You can’t perform that action at this time.
0 commit comments