2 Commits

Author SHA1 Message Date
github-actions[bot]
8e6ded3040 chore(master): release 2.4.1 2026-04-21 10:46:08 +03:00
627fde8b01 fix: use -B for background flag to prevent flags conflict 2026-04-21 10:44:28 +03:00
3 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## [2.4.1](https://github.com/chenasraf/tx/compare/v2.4.0...v2.4.1) (2026-04-21)
### Bug Fixes
* use -B for background flag to prevent flags conflict ([627fde8](https://github.com/chenasraf/tx/commit/627fde8b01f685ff8ba0705fd2735b89fd92b356))
## [2.4.0](https://github.com/chenasraf/tx/compare/v2.3.0...v2.4.0) (2026-04-07)

View File

@@ -167,7 +167,7 @@ func init() {
// Global flags
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "V", false, "Verbose logging")
rootCmd.PersistentFlags().BoolVarP(&dry, "dry", "d", false, "Dry run (log commands, don't execute)")
rootCmd.PersistentFlags().BoolVarP(&background, "background", "b", false, "Create session in background without attaching")
rootCmd.PersistentFlags().BoolVarP(&background, "background", "B", false, "Create session in background without attaching")
rootCmd.Flags().BoolP("version", "v", false, "Print version")
// Add subcommands

View File

@@ -1 +1 @@
2.4.0
2.4.1