Skip to content

Commit a334092

Browse files
committed
chore(release): 🚀 5.30.1
1 parent c17a3d2 commit a334092

4 files changed

Lines changed: 55 additions & 44 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
# Changelog
44

5+
## 5.30.1-beta.1 (2025-10-02)
6+
7+
_Commits from: v5.30.0..HEAD_
8+
9+
### 📦 gitutils changes
10+
11+
#### Bug Fixes
12+
13+
- 🐛 enhance hotfix branch creation and rebase handling ([c17a3d2](https://github.com/tomgrv/devcontainer-features/commit/c17a3d2e086ce09d83b2d443b433c5d632a96616))
14+
- 🐛 refine version extraction ([9de255e](https://github.com/tomgrv/devcontainer-features/commit/9de255ed621955a6cdaf3793d563e104cff7e13a))
15+
516
## 5.30.0-beta.1 (2025-10-02)
617

718
_Commits from: v5.29.1..HEAD_

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/devcontainer-features",
3-
"version": "5.30.0-beta.1",
3+
"version": "5.30.1-beta.1",
44
"description": "Configure dev environment with devcontainer, gitflow, gitversion, git aliases & hooks. Can be used a devcontainer features",
55
"keywords": [
66
"dev",

src/gitutils/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "gitutils",
33
"name": "Git Aliases",
44
"description": "A feature to add useful Git aliases to your shell.",
5-
"version": "5.30.0-beta.1",
5+
"version": "5.30.1-beta.1",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/node:1": "lts",
88
"ghcr.io/tomgrv/devcontainer-features/common-utils:5": {

src/gitutils/package.json

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
{
2-
"name": "@tomgrv/gitutils",
3-
"version": "5.30.0-beta.1",
4-
"description": "Git utilities and aliases for development workflow",
5-
"files": [
6-
"_*.sh",
7-
"install.sh",
8-
"install-config.sh",
9-
"alias.json",
10-
"config.json",
11-
"stubs/**/*"
12-
],
13-
"bin": {
14-
"deleteChildren": "./_deleteChildren.sh",
15-
"git-align": "./_git-align.sh",
16-
"git-co": "./_git-co.sh",
17-
"git-degit": "./_git-degit.sh",
18-
"git-fix": "./_git-fix.sh",
19-
"git-fix-author": "./_git-fix-author.sh",
20-
"git-fix-emoji": "./_git-fix-emoji.sh",
21-
"git-fix-last": "./_git-fix-last.sh",
22-
"git-fix-lock": "./_git-fix-lock.sh",
23-
"git-fix-mode": "./_git-fix-mode.sh",
24-
"git-fix-privacy": "./_git-fix-privacy.sh",
25-
"git-fix-up": "./_git-fix-up.sh",
26-
"git-forall": "./_git-forall.sh",
27-
"git-getcommit": "./_git-getcommit.sh",
28-
"git-integrate": "./_git-integrate.sh",
29-
"git-pick": "./_git-pick.sh",
30-
"git-release": "./_git-release.sh",
31-
"git-release-alpha": "./_git-release-alpha.sh",
32-
"git-release-beta": "./_git-release-beta.sh",
33-
"git-release-hotfix": "./_git-release-hotfix.sh",
34-
"git-release-prod": "./_git-release-prod.sh",
35-
"setrights": "./_setrights.sh",
36-
"unset": "./_unset.sh"
37-
},
38-
"scripts": {},
39-
"dependencies": {},
40-
"peerDependencies": {
41-
"@tomgrv/common-utils": "^5.0.0",
42-
"@tomgrv/gitversion": "^5.0.0"
43-
}
2+
"name": "@tomgrv/gitutils",
3+
"version": "5.30.1-beta.1",
4+
"description": "Git utilities and aliases for development workflow",
5+
"files": [
6+
"_*.sh",
7+
"install.sh",
8+
"install-config.sh",
9+
"alias.json",
10+
"config.json",
11+
"stubs/**/*"
12+
],
13+
"bin": {
14+
"deleteChildren": "./_deleteChildren.sh",
15+
"git-align": "./_git-align.sh",
16+
"git-co": "./_git-co.sh",
17+
"git-degit": "./_git-degit.sh",
18+
"git-fix": "./_git-fix.sh",
19+
"git-fix-author": "./_git-fix-author.sh",
20+
"git-fix-emoji": "./_git-fix-emoji.sh",
21+
"git-fix-last": "./_git-fix-last.sh",
22+
"git-fix-lock": "./_git-fix-lock.sh",
23+
"git-fix-mode": "./_git-fix-mode.sh",
24+
"git-fix-privacy": "./_git-fix-privacy.sh",
25+
"git-fix-up": "./_git-fix-up.sh",
26+
"git-forall": "./_git-forall.sh",
27+
"git-getcommit": "./_git-getcommit.sh",
28+
"git-integrate": "./_git-integrate.sh",
29+
"git-pick": "./_git-pick.sh",
30+
"git-release": "./_git-release.sh",
31+
"git-release-alpha": "./_git-release-alpha.sh",
32+
"git-release-beta": "./_git-release-beta.sh",
33+
"git-release-hotfix": "./_git-release-hotfix.sh",
34+
"git-release-prod": "./_git-release-prod.sh",
35+
"setrights": "./_setrights.sh",
36+
"unset": "./_unset.sh"
37+
},
38+
"scripts": {},
39+
"dependencies": {},
40+
"peerDependencies": {
41+
"@tomgrv/common-utils": "^5.0.0",
42+
"@tomgrv/gitversion": "^5.0.0"
43+
}
4444
}

0 commit comments

Comments
 (0)