Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-19 20:57:32 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-19 20:57:32 +0400
commit148eade9d71ee9957633c4a5371857fdb0def605 (patch)
treeaf1cd7c8e33866688c7592acfcdb3a411be2327a
parentd899fcdd2da157c72e4efc427a5d2f1e91a5b491 (diff)
Version to 5.3v5.3.0
-rw-r--r--CHANGELOG1
-rw-r--r--VERSION2
-rw-r--r--doc/install/installation.md10
3 files changed, 7 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index f26466f9da8..7d1ada97c57 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -24,6 +24,7 @@ v 5.3.0
- init.d: Ensure socket is removed before starting service
- Admin area: Style teams:index, group:show pages
- Own page for failed forking
+ - Scrum view for milestone
v 5.2.0
- Turbolinks
diff --git a/VERSION b/VERSION
index 455f90e3b18..03f488b076a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-5.3.0.beta1
+5.3.0
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 3b459ad77b5..425feed1a11 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -149,10 +149,10 @@ To setup the MySQL/PostgreSQL database and dependencies please see [`doc/install
cd /home/git/gitlab
# Checkout to stable release
- sudo -u git -H git checkout 5-2-stable
+ sudo -u git -H git checkout 5-3-stable
**Note:**
-You can change `5-2-stable` to `master` if you want the *bleeding edge* version, but
+You can change `5-3-stable` to `master` if you want the *bleeding edge* version, but
do so with caution!
## Configure it
@@ -344,10 +344,10 @@ GitLab uses [Omniauth](http://www.omniauth.org/) for authentication and already
These steps are fairly general and you will need to figure out the exact details from the Omniauth provider's documentation.
-* Add `gem "omniauth-your-auth-provider"` to the [Gemfile](https://github.com/gitlabhq/gitlabhq/blob/5-2-stable/Gemfile#L18)
+* Add `gem "omniauth-your-auth-provider"` to the [Gemfile](https://github.com/gitlabhq/gitlabhq/blob/5-3-stable/Gemfile#L18)
* Run `sudo -u git -H bundle install` to install the new gem(s)
-* Add provider specific configuration options to your `config/gitlab.yml` (you can use the [auth providers section of the example config](https://github.com/gitlabhq/gitlabhq/blob/5-2-stable/config/gitlab.yml.example#L53) as a reference)
-* Add icons for the new provider into the [vendor/assets/images/authbuttons](https://github.com/gitlabhq/gitlabhq/tree/5-2-stable/vendor/assets/images/authbuttons) directory (you can find some more popular ones over at https://github.com/intridea/authbuttons)
+* Add provider specific configuration options to your `config/gitlab.yml` (you can use the [auth providers section of the example config](https://github.com/gitlabhq/gitlabhq/blob/5-3-stable/config/gitlab.yml.example#L53) as a reference)
+* Add icons for the new provider into the [vendor/assets/images/authbuttons](https://github.com/gitlabhq/gitlabhq/tree/5-3-stable/vendor/assets/images/authbuttons) directory (you can find some more popular ones over at https://github.com/intridea/authbuttons)
* Restart GitLab
### Examples