Skip to content

Commit 2c4f8df

Browse files
committed
ci: switch to versionless tag format (1.x.0) to avoid upstream collision [skip ci]
1 parent a9fd0de commit 2c4f8df

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/checkout@v4
5050
with:
5151
fetch-depth: 0
52-
ref: v${{ needs.release.outputs.new_release_version }}
52+
ref: ${{ needs.release.outputs.new_release_version }}
5353

5454
- name: Setup Go
5555
uses: actions/setup-go@v5

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project_name: jira
33

44
release:
55
prerelease: auto
6-
name_template: "v{{.Version}}"
6+
name_template: "{{.Version}}"
77
draft: false
88
mode: "append"
99

.releaserc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"tagFormat": "${version}",
23
"branches": ["main"],
34
"plugins": [
45
["@semantic-release/commit-analyzer", {

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## [1.6.0](https://github.com/hackerh3/jira-cli/releases/tag/v1.6.0) (2026-05-11)
3+
All notable changes to the hackerh3/jira-cli fork are documented here.
4+
This fork uses versionless tags (e.g. `1.8.0`) to distinguish from upstream `v1.x.0`.
5+
6+
## [1.8.0](https://github.com/hackerh3/jira-cli/releases/tag/1.8.0) (2026-05-12)
7+
8+
First release under the new versioning scheme. Incorporates all upstream
9+
changes through v1.7.0 plus fork-exclusive features.
410

511
### Features
612

@@ -9,9 +15,17 @@
915
* **jira:** add JSP session client with cookie jar ([70713a3](https://github.com/hackerh3/jira-cli/commit/70713a3))
1016
* **api:** add GetIssueComment and UpdateIssueComment ([71f6b5a](https://github.com/hackerh3/jira-cli/commit/71f6b5a))
1117
* **cmd:** add comment edit subcommand ([e27710d](https://github.com/hackerh3/jira-cli/commit/e27710d))
18+
* **jira:** add Deviniti Issue Template support for issue creation ([d1a9bd2](https://github.com/hackerh3/jira-cli/commit/d1a9bd2))
1219

1320
### Bug Fixes
1421

1522
* **jira:** detect broken workflow and suggest move-project workaround ([8b17182](https://github.com/hackerh3/jira-cli/commit/8b17182))
1623
* **jira:** confirm step needs confirm=true + smart key extraction ([e28a8b8](https://github.com/hackerh3/jira-cli/commit/e28a8b8))
1724
* resolve golangci-lint failures in move-project code ([0ec114d](https://github.com/hackerh3/jira-cli/commit/0ec114d))
25+
* add plain output for project list ([e58dbc4](https://github.com/hackerh3/jira-cli/commit/e58dbc4))
26+
* preserve raw JQL ordering ([3061f88](https://github.com/hackerh3/jira-cli/commit/3061f88))
27+
28+
### CI/CD
29+
30+
* semantic-release pipeline with goreleaser cross-compilation
31+
* versionless tag format (`1.x.0`) to avoid upstream collision

0 commit comments

Comments
 (0)