Skip to content

Commit

Permalink
tmux-2.9a - add support for tmux 2.9a (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethagnawl committed May 2, 2019
1 parent e913e83 commit 43a7a89
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ rvm:
- "2.5.5"
- "2.6.2"
env:
- TMUX_VERSION=2.9a
- TMUX_VERSION=2.9
- TMUX_VERSION=2.8
- TMUX_VERSION=2.7
- TMUX_VERSION=2.6
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Unreleased
### Misc
- add support for tmux 2.9a

## 1.0.0
### Misc
- add support for tmux 2.9
Expand Down
29 changes: 15 additions & 14 deletions lib/tmuxinator/tmux_version.rb
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
module Tmuxinator
module TmuxVersion
SUPPORTED_TMUX_VERSIONS = [
1.5,
1.6,
1.7,
1.8,
1.9,
2.0,
2.1,
2.2,
2.3,
2.4,
2.5,
2.6,
2.7,
"2.9a",
2.9,
2.8,
2.9
2.7,
2.6,
2.5,
2.4,
2.3,
2.2,
2.1,
2.0,
1.9,
1.8,
1.7,
1.6,
1.5,
].freeze
UNSUPPORTED_VERSION_MSG = <<-MSG.freeze
WARNING: You are running tmuxinator with an unsupported version of tmux.
Expand Down

0 comments on commit 43a7a89

Please sign in to comment.