Skip to content

Commit de3d1f6

Browse files
committed
Merge branch 'release/0.2.2'
2 parents ec1611e + 5c68fd8 commit de3d1f6

File tree

6 files changed

+426
-362
lines changed

6 files changed

+426
-362
lines changed

CHANGELOG.md

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

3+
## [0.2.2](https://github.com/VChet/git-merged-branches/compare/0.2.1...0.2.2) (2025-05-29)
4+
5+
### Features
6+
7+
* **repo:** handle detached HEAD state ([e659417](https://github.com/VChet/git-merged-branches/commit/e6594175361f396a7473121511d1a806e85d26ce))
8+
39
## [0.2.1](https://github.com/VChet/git-merged-branches/compare/0.2.0...0.2.1) (2025-04-22)
410

511
### Features

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@ npx git-merged-branches
2424

2525
## Usage
2626

27-
By default, the command shows merged branches into the base branch (**master** or **main**). If neither exists, it will notify you.
27+
By default, the command shows merged branches into the base branch (**master** or **main**).
28+
If neither exists, it will notify you.
2829

2930
Example output:
3031

3132
```bash
3233
$ git-merged-branches
3334
Branches merged into 'master':
34-
feature/add-new-feature
3535
bugfix/fix-crash-on-start
36+
feature/add-new-feature
3637
hotfix/urgent-fix
3738
```
3839

@@ -57,10 +58,10 @@ With this setup, `git-merged-branches` will generate links for branches with suc
5758
```bash
5859
$ git-merged-branches
5960
Branches merged into 'master':
60-
TOKEN-800_new-feature <https://your-jira-instance.net/browse/TOKEN-800>
61-
fix/TOKEN-123_some-fix <https://your-jira-instance.net/browse/TOKEN-123>
6261
fix/EXTERNAL-391
62+
fix/TOKEN-123_some-fix <https://your-jira-instance.net/browse/TOKEN-123>
6363
hotfix
64+
TOKEN-800_new-feature <https://your-jira-instance.net/browse/TOKEN-800>
6465
```
6566

6667
If the configuration is invalid, warnings will be shown and the utility will skip formatting URLs.
@@ -98,4 +99,6 @@ Now you can run `git-merged-branches` on your local machine.
9899

99100
## Contributing
100101

101-
If you have any ideas, bug reports, or feature requests, feel free to [contribute](https://github.com/VChet/git-merged-branches/pulls) or report [issues](https://github.com/VChet/git-merged-branches/issues).
102+
If you have any ideas, bug reports, or feature requests,
103+
feel free to [contribute](https://github.com/VChet/git-merged-branches/pulls)
104+
or report [issues](https://github.com/VChet/git-merged-branches/issues).

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "git-merged-branches",
33
"description": "CLI tool to list all Git branches merged into a base branch with issue link formatting",
44
"type": "module",
5-
"version": "0.2.1",
5+
"version": "0.2.2",
66
"license": "MIT",
77
"author": {
88
"name": "VChet",
@@ -36,13 +36,13 @@
3636
},
3737
"devDependencies": {
3838
"@release-it/conventional-changelog": "^10.0.1",
39-
"@types/node": "^22.14.1",
39+
"@types/node": "^22.15.24",
4040
"dotenv-cli": "^8.0.0",
41-
"esbuild": "^0.25.2",
42-
"eslint": "^9.25.1",
41+
"esbuild": "^0.25.5",
42+
"eslint": "^9.27.0",
4343
"neostandard": "^0.12.1",
44-
"release-it": "^19.0.1",
44+
"release-it": "^19.0.2",
4545
"typescript": "^5.8.3",
46-
"vitest": "^3.1.2"
46+
"vitest": "^3.1.4"
4747
}
4848
}

0 commit comments

Comments
 (0)