Commit 2a8aa742 authored by Marin Jankovski's avatar Marin Jankovski

Merge branch 'monthly_doc_update' into 'master'

Monthly release doc update
parents ef933ae6 ab126c80
......@@ -15,6 +15,8 @@ The RC1 release comes with the task to update the installation and upgrade docs.
### **1. Create an issue for RC1 release**
Consider naming the issue "Release x.x.x.rc1" to make it easier for later searches.
### **2. Update the installation guide**
1. Check if it references the correct branch `x-x-stable` (doesn't exist yet, but that is okay)
......@@ -82,7 +84,7 @@ Make sure the code quality indicators are green / good.
### **5. Set VERSION**
Set VERSION tot x.x.0.rc1
Change version in VERSION to x.x.0.rc1
### **6. Tag**
......@@ -98,12 +100,34 @@ Tweet about the RC release:
> GitLab x.x.x.rc1 is out. This is a release candidate intended for testing only. Please let us know if you find regressions.
### **8. Update Cloud**
### **8. Update GitLab.com**
Merge the RC1 code into Cloud. Once the build is green, deploy in the morning.
Merge the RC1 code into GitLab.com. Once the build is green, deploy in the morning.
It is important to do this as soon as possible, so we can catch any errors before we release the full version.
# **21st - Preparation **
### **1. Prepare the blog post**
* Check the changelog of CE and EE for important changes. Based on [release blog template](https://gitlab.com/gitlab-com/www-gitlab-com/blob/master/doc/release_blog_template.md) fill in the important information.
* Create a WIP MR for the blog post and cc the team so everyone can give feedback.
* Ask Dmitriy to add screenshots to the WIP MR.
* Decide with team who will be the MVP user.
* Add a note if there are security fixes: This release fixes an important security issue and we advise everyone to upgrade as soon as possible.
### **2. Q&A**
Create issue on dev.gitlab.org gitlab repository, named "GitLab X.X release" in order to keep track of the progress.
Use the omnibus packages or cookbook to test using [this guide](https://dev.gitlab.org/gitlab/gitlab-ee/blob/master/doc/release/manual_testing.md).
**NOTE** Upgrader can only be tested when tags are pushed to all repositories. Do not forget to confirm it is working before releasing. Note that in the issue.
### **3. Fix anything coming out of the QA**
Create an issue with description of a problem, if it is quick fix fix yourself otherwise contact the team for advice.
# **22nd - Release CE and EE**
......@@ -125,27 +149,31 @@ git push <remote> x-x-stable
### **2. Build the Omnibus packages**
[Follow this guide](https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/release.md)
### **3. QA**
Use the omnibus packages to test using [this guide](https://dev.gitlab.org/gitlab/gitlab-ee/blob/master/doc/release/manual_testing.md)
### **3. Set VERSION to x.x.x and push**
Change the VERSION file in `master` branch of the CE repository and commit.
Cherry-pick into the `x-x-stable` branch of CE.
Change the VERSION file in `master branch of the EE repository and commit.
Cherry-pick into the `x-x-stable-ee` branch of EE.
### **4. Fix anything coming out of the QA**
### **4. Create annotated tag vx.x.x**
### **5. Set VERSION to x.x.0**
In `x-x-stable` branch check for the sha1 of the commit with VERSION file changed. Tag that commit,
### **6. Create annotated tag vx.x.0**
```
git tag -a vx.x.0 -m 'Version x.x.0'
git tag -a vx.x.0 -m 'Version x.x.0' xxxxx
```
### **7. Push VERSION + Tag to master, merge into x-x-stable**
where `xxxxx` is sha1.
### **5. Push the tag**
```
git push origin master
git push origin vx.x.0
```
Next, merge the VERSION into the x-x-stable branch.
### **8. Push to remotes**
### **6. Push to remotes**
For GitLab CE, push to dev, GitLab.com and GitHub.
......@@ -153,15 +181,30 @@ For GitLab EE, push to the subscribers repo.
NOTE: You might not have the rights to push to master on dev. Ask Dmitriy.
### **9. Publish blog for new release**
* Mention what GitLab is on the second line: GitLab is open source software to collaborate on code.
* Select and thank the the Most Valuable Person (MVP) of this release.
* Add a note if there are security fixes: This release fixes an important security issue and we advise everyone to upgrade as soon as possible.
### **7. Publish blog for new release**
### **10. Tweet to blog**
Merge the [blog merge request](#1-prepare-the-blog-post) in `www-gitlab-com` repository.
### **8. Tweet to blog**
Send out a tweet to share the good news with the world. List the features in short and link to the blog post.
Proposed tweet for CE "GitLab X.X.X CE is released! It brings *** <link-to-blogpost>"
Proposed tweet for EE "GitLab X.X.X EE is released! It brings *** <link-to-blogpost>"
### **9. Send out newsletter**
In mailchimp replicate the former release newsletters to customers / newsletter subscribers (these are two separate things) and modify them accordingly.
Include a link to the blog post and keep it short.
Proposed email for CE: "We have released a new version of GitLab Community Edition and its packages. See our blog post(<link>) for more information."
# **23rd - Optional Patch Release**
# **24th - Update GitLab.com**
Merge the stable release into GitLab.com. Once the build is green deploy the next morning.
# **25th - Release GitLab CI**
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment