Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .tagpr
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[tagpr]
vPrefix = true
releaseBranch = main
release = draft
release = draft
versionFile = cmd/root.go
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down