]> git.immae.eu Git - github/wallabag/wallabag.git/blame - RELEASE_PROCESS.md
Fix documentation wording for matches/notmatches tagging rules
[github/wallabag/wallabag.git] / RELEASE_PROCESS.md
CommitLineData
923a7e8d
BD
1## Definition
2
3A release is mostly a git tag of http://github.com/wallabag/wallabag, following [semantic versioning](http://semver.org).
923a7e8d 4
6b6f7251
NL
5### Steps to release
6
7eff4736 7During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE`.
6b6f7251
NL
8
9#### Files to edit
10
b4da3ee8 11- `app/config/wallabag.yml` (`wallabag_core.version`)
42f4f11e 12- `CHANGELOG.md`
6b6f7251
NL
13
14#### Create release on GitHub
15
16- Run these commands to create the tag:
17
7c122534
NL
18```
19git checkout master
20git pull origin master
21git checkout -b release-$LAST_WALLABAG_RELEASE
22SYMFONY_ENV=prod composer up --no-dev
45277ad2
JB
23```
24
25- Update `.travis.yml` file and replace the composer line with this one:
26
27```diff
28script:
29- - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist
30+ - travis_wait composer update --no-interaction --no-progress
31```
32
33- Then continue with these commands:
34
35```
36git add --force composer.lock .travis.yml
7c122534
NL
37git commit -m "Release wallabag $LAST_WALLABAG_RELEASE"
38git push origin release-$LAST_WALLABAG_RELEASE
39```
6b6f7251 40
7eff4736 41- Create a new pull request with this title `DON'T MERGE Release wallabag $LAST_WALLABAG_RELEASE`. This pull request is used to launch builds on Travis-CI.
7c122534 42- Run these command to create the package:
6b6f7251 43
7c122534 44```
ed11d7f7 45make release master /tmp wllbg-release prod
7c122534 46```
6b6f7251
NL
47
48- [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new). You have to upload on this page the package.
7eff4736 49- Delete the `release-$LAST_WALLABAG_RELEASE` branch and close the pull request (**DO NOT MERGE IT**).
0f26c285 50- Update the URL shortener (used on `wllbg.org` to generate links like `https://wllbg.org/latest-v2-package` or `http://wllbg.org/latest-v2`)
6b6f7251 51- Update [the downloads page](https://github.com/wallabag/wallabag.org/blob/master/content/pages/download.md) on the website (MD5 sum, release date)
7eff4736
NL
52- Update Dockerfile https://github.com/wallabag/docker (and create a new tag)
53- Update wallabag.org website (downloads, releases and new blog post)
6b1317a6 54- Put the next patch version suffixed with `-dev` in `app/config/config.yml` (`wallabag_core.version`)
7eff4736 55- Drink a :beer:!
923a7e8d
BD
56
57### `composer.lock`
58A release tag must contain a `composer.lock` file. It sets which dependencies were available at the time a release was done,
59making it easier to fix issues after the release. It also speeds up `composer install` on stable versions a LOT, by skipping the
60dependencies resolution part.
61
62Since `composer.lock` is ignored by default, either it must be removed from `.gitignore` _in the release branch_,
63or it must be added using `git add --force composer.lock`.
64
65### Target PHP version
66`composer.lock` is _always_ built for a particular version, by default the one it is generated (with `composer update`).
67
68If the PHP version used to generate the .lock isn't a widely available one (like PHP 7), a more common one should
69be locally specified in `composer.lock`:
70
71```json
72 "config": {
73 "platform": {
74 "php": "5.5.9",
75 "ext-something": "4.0"
76 }
77 }
78```