]> git.immae.eu Git - github/wallabag/wallabag.git/blame - RELEASE_PROCESS.md
Added documentation about testsuite
[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
11- `app/config/config.yml` (`wallabag_core.version`)
7eff4736 12- `CHANGELOG.md` (by using this command `github_changelog_generator --no-compare-link`. [github-changelog-generator is available here](https://github.com/skywinder/github-changelog-generator))
6b6f7251
NL
13
14#### Create release on GitHub
15
16- Run these commands to create the tag:
17
edc8bc0b
JB
18 ```
19 git checkout master
20 git pull origin master
21 git checkout -b release-$LAST_WALLABAG_RELEASE
22 SYMFONY_ENV=prod composer up --no-dev
23 git add --force composer.lock
24 git commit -m "Release wallabag $LAST_WALLABAG_RELEASE"
25 git push origin release-$LAST_WALLABAG_RELEASE
26 ```
6b6f7251 27
7eff4736
NL
28- 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.
29- Run these commands to create the package (you need to clone `https://github.com/wallabag/releaser`) :
6b6f7251 30
edc8bc0b
JB
31 ```
32 cd releaser/
33 ./releaser.sh $LAST_WALLABAG_RELEASE
34 ```
6b6f7251
NL
35
36- [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new). You have to upload on this page the package.
7eff4736 37- Delete the `release-$LAST_WALLABAG_RELEASE` branch and close the pull request (**DO NOT MERGE IT**).
6b6f7251
NL
38- Update the URL shortener (used on `wllbg.org` to generate links like `http://wllbg.org/latest-v2-package` or `http://wllbg.org/latest-v2`)
39- 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
40- Update Dockerfile https://github.com/wallabag/docker (and create a new tag)
41- Update wallabag.org website (downloads, releases and new blog post)
42- Drink a :beer:!
923a7e8d
BD
43
44### `composer.lock`
45A release tag must contain a `composer.lock` file. It sets which dependencies were available at the time a release was done,
46making it easier to fix issues after the release. It also speeds up `composer install` on stable versions a LOT, by skipping the
47dependencies resolution part.
48
49Since `composer.lock` is ignored by default, either it must be removed from `.gitignore` _in the release branch_,
50or it must be added using `git add --force composer.lock`.
51
52### Target PHP version
53`composer.lock` is _always_ built for a particular version, by default the one it is generated (with `composer update`).
54
55If the PHP version used to generate the .lock isn't a widely available one (like PHP 7), a more common one should
56be locally specified in `composer.lock`:
57
58```json
59 "config": {
60 "platform": {
61 "php": "5.5.9",
62 "ext-something": "4.0"
63 }
64 }
65```