Skip to content

Commit 8bb46fd

Browse files
chore(release): 0.15.0 [skip ci]
# [0.15.0](v0.14.1...v0.15.0) (2026-07-25) ### Features * **templates:** support multiple named branch and tag templates ([#166](#166)) ([012b129](012b129)) * **website:** add v0.14.0 feature cards and clickable feature detail modals ([#164](#164)) ([63573fc](63573fc))
1 parent c8771cc commit 8bb46fd

2 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [0.15.0](https://github.com/zaknafeyn/git-smart-checkout/compare/v0.14.1...v0.15.0) (2026-07-25)
2+
3+
4+
### Features
5+
6+
* **templates:** support multiple named branch and tag templates ([#166](https://github.com/zaknafeyn/git-smart-checkout/issues/166)) ([012b129](https://github.com/zaknafeyn/git-smart-checkout/commit/012b129130a8fa7e6508a07b26730fbef0d56f25))
7+
* **website:** add v0.14.0 feature cards and clickable feature detail modals ([#164](https://github.com/zaknafeyn/git-smart-checkout/issues/164)) ([63573fc](https://github.com/zaknafeyn/git-smart-checkout/commit/63573fc7b7e7a7828f087341a742b33518ce386f))
8+
19
# [0.14.0](https://github.com/zaknafeyn/git-smart-checkout/compare/v0.13.2...v0.14.0) (2026-07-16)
210

311

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"clone pull request"
2121
],
2222
"license": "MIT",
23-
"version": "0.14.0",
23+
"version": "0.15.0",
2424
"icon": "resources/icon-512.png",
2525
"engines": {
2626
"vscode": "^1.74.0",
@@ -583,7 +583,10 @@
583583
"markdownDescription": "Template used to generate Git tag names. Supports tokens: `{f:<file>:<json-path>}`, `{b:<regex>}`, `{r:<start-number>[:<separator>]}`, `{s:<script>}` (stdout) or `{s:stderr:<script>}`.\n\nThe `{r}` token is an optional uniqueness suffix: it is dropped when the tag built without it is free, otherwise it appends `<separator><start-number>` and increments until the name is free.\n\nExample: `test-v{f:package.json:.version}-{b:\\b[A-Z]+-\\d{3,4}\\b}-{s:./test.sh}{r:1:-}`"
584584
}
585585
},
586-
"required": ["name", "template"],
586+
"required": [
587+
"name",
588+
"template"
589+
],
587590
"additionalProperties": false
588591
},
589592
"default": [],
@@ -603,7 +606,10 @@
603606
"markdownDescription": "Template used to generate Git branch names. Supports tokens: `{jira-key}`, `{jira-title[:limit[:separator]]}`, `{f:<file>:<json-path>}`, `{b:<regex>}`, `{r:<start-number>[:<separator>]}`, `{s:<script>}`.\n\nExample: `vradchuk/{jira-key}-{jira-title:25:-}{r:1:-}`."
604607
}
605608
},
606-
"required": ["name", "template"],
609+
"required": [
610+
"name",
611+
"template"
612+
],
607613
"additionalProperties": false
608614
},
609615
"default": [],

0 commit comments

Comments
 (0)