Commit 895c913247e0444374316ea46dec9304ce1efdf4

Authored by Marin Jankovski
1 parent 6d9dccbe

Use the latest tag, 1.9.1 for gitlab-shell.

doc/install/installation.md
... ... @@ -128,7 +128,7 @@ GitLab Shell is an ssh access and repository management software developed speci
128 128 cd /home/git
129 129  
130 130 # Clone gitlab shell
131   - sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-shell.git -b v1.8.0
  131 + sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-shell.git -b v1.9.1
132 132  
133 133 cd gitlab-shell
134 134  
... ...
doc/update/6.6-to-6.7.md
... ... @@ -37,7 +37,7 @@ sudo -u git -H git checkout 6-7-stable-ee
37 37 ```bash
38 38 cd /home/git/gitlab-shell
39 39 sudo -u git -H git fetch
40   -sudo -u git -H git checkout v1.9.0
  40 +sudo -u git -H git checkout v1.9.1
41 41 ```
42 42  
43 43 ### 4. Install libs, migrations, etc.
... ...
lib/tasks/gitlab/check.rake
... ... @@ -742,7 +742,7 @@ namespace :gitlab do
742 742 end
743 743  
744 744 def check_gitlab_shell
745   - required_version = Gitlab::VersionInfo.new(1, 9, 0)
  745 + required_version = Gitlab::VersionInfo.new(1, 9, 1)
746 746 current_version = Gitlab::VersionInfo.parse(gitlab_shell_version)
747 747  
748 748 print "GitLab Shell version >= #{required_version} ? ... "
... ...