diff --git a/.tagpr b/.tagpr index a42a6c1..7512ca4 100644 --- a/.tagpr +++ b/.tagpr @@ -1,4 +1,5 @@ [tagpr] vPrefix = true releaseBranch = main - release = draft \ No newline at end of file + release = draft + versionFile = cmd/root.go diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a75edbe --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +## [v0.2.4](https://github.com/putcho01/atlassian-cli/compare/v0.2.3...v0.2.4) - 2026-05-11 +- :wrench:(release): set up automated release flow with tagpr by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/8 + +## [v0.2.3](https://github.com/putcho01/atlassian-cli/compare/0.2.1...v0.2.3) - 2026-05-09 +- fix(htmlconv): fix heading text loss and normalize Confluence HTML output by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/7 + +## [v0.2.2](https://github.com/putcho01/atlassian-cli/compare/0.2.0...v0.2.2) - 2026-05-09 +- chore(release): add GoReleaser config and release workflow by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/6 + +## [0.2.1](https://github.com/putcho01/atlassian-cli/compare/0.2.0...0.2.1) - 2026-05-09 +- chore(release): add GoReleaser config and release workflow by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/6 + +## [0.2.0](https://github.com/putcho01/atlassian-cli/compare/0.1.0...0.2.0) - 2026-05-09 +- feat(jira): add JIRA_DEFAULT_PROJECT env var for default project fallback by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/1 +- feat(jira): add "issue open" command to open issue in browser by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/2 +- feat(jira): add "issue comment list/add" commands by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/3 +- feat(confluence): add "page create" and "page update" commands by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/4 +- feat(tui): add interactive issue picker with bubbletea by @putcho01 in https://github.com/putcho01/atlassian-cli/pull/5 + +## [0.1.0](https://github.com/putcho01/atlassian-cli/commits/0.1.0) - 2026-05-08 diff --git a/cmd/root.go b/cmd/root.go index d95b211..6a888f9 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -38,7 +38,7 @@ import ( "github.com/spf13/cobra" ) -var version = "0.2.3" +var version = "0.2.4" var rootCmd = &cobra.Command{ Use: "atlassian-cli",