diff --git a/cmd/root.go b/cmd/root.go index 6a79a92..5861573 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -38,7 +38,7 @@ var cfgFile string // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ - Version: "0.2.0", + Version: "0.2.1", Use: "workon [project]", Short: "Manage tmux sessions", Long: "", diff --git a/flake.lock b/flake.lock index c699477..4f49f79 100644 --- a/flake.lock +++ b/flake.lock @@ -18,11 +18,11 @@ }, "flake-utils": { "locked": { - "lastModified": 1659877975, - "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=", + "lastModified": 1667395993, + "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", "owner": "numtide", "repo": "flake-utils", - "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0", + "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", "type": "github" }, "original": { @@ -33,11 +33,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1666867875, - "narHash": "sha256-3nD7iQXd/J6KjkT8IjozTuA5p8qjiLKTxvOUmH+AzNM=", + "lastModified": 1667389534, + "narHash": "sha256-qyfI/QzKZiYA8/uNSCGLT9/jeB7d8Yq86ynH2KO0cF8=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c132d0837dfb9035701dcd8fc91786c605c855c3", + "rev": "3390a2b135554ea7ff3b6f26c006c3729a41df3b", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index b82d404..cc69c2b 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ { packages.workon = pkgs.buildGoModule { pname = "workon"; - version = "0.2.0"; + version = "0.2.1"; src = ./.; vendorSha256 = "sha256-ia0Z9yz2LrRAd9huncFtl/a6R3/gRpqbg6TdnauvEmQ="; nativeBuildInputs = with pkgs; [ diff --git a/tmux/tmux.go b/tmux/tmux.go index ea63ac8..c11fe4e 100644 --- a/tmux/tmux.go +++ b/tmux/tmux.go @@ -60,7 +60,6 @@ func (t *Tmux) ListSessions() ([]string, error) { } lines := strings.Trim(string(result), "\n") - fmt.Println("Sessions", lines) return strings.Split(lines, "\n"), nil }