From a3f7d8a8704d6c0ff303ea780314035a779ac84a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 4 Nov 2016 09:10:15 +0100 Subject: Prepare wallabag 2.1.3 :rocket: --- RELEASE_PROCESS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RELEASE_PROCESS.md') diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 34e9a36f..cbe5a060 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -9,7 +9,7 @@ During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE`. #### Files to edit - `app/config/config.yml` (`wallabag_core.version`) -- `CHANGELOG.md` (by using this command `github_changelog_generator --no-compare-link --header-label="# Changelog" --no-issues --no-pr-wo-labels --since-tag="1.9.2"`. [github-changelog-generator is available here](https://github.com/skywinder/github-changelog-generator)) +- `CHANGELOG.md` (by using this command `github_changelog_generator --no-compare-link --header-label="# Changelog" --no-issues --no-pr-wo-labels --since-tag="1.9.2" --future-release="2.1.3"`. [github-changelog-generator is available here](https://github.com/skywinder/github-changelog-generator)) #### Create release on GitHub -- cgit v1.2.3 From 505e8acd466de26b2694c9842b19a21fa6986ed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 4 Nov 2016 11:28:44 +0100 Subject: Update CHANGELOG Usage of github-changes from @lalitkapoor --- RELEASE_PROCESS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'RELEASE_PROCESS.md') diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index cbe5a060..6873be49 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -9,7 +9,7 @@ During this documentation, we assume the release is `$LAST_WALLABAG_RELEASE`. #### Files to edit - `app/config/config.yml` (`wallabag_core.version`) -- `CHANGELOG.md` (by using this command `github_changelog_generator --no-compare-link --header-label="# Changelog" --no-issues --no-pr-wo-labels --since-tag="1.9.2" --future-release="2.1.3"`. [github-changelog-generator is available here](https://github.com/skywinder/github-changelog-generator)) +- `CHANGELOG.md` (by using this command `github-changes -o wallabag -r wallabag -k YOURGITHUBTOKEN --only-pulls --use-commit-body --title Changelog --date-format YYYY/MM/DD --between-tags 2.0.0-alpha.0...master -n 2.1.3`. [github-changes is available here](https://github.com/lalitkapoor/github-changes)) #### Create release on GitHub -- cgit v1.2.3 From 45277ad2bdb072e0ef6c5371aa410db3ba3d158e Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 19 Nov 2016 11:43:47 +0100 Subject: Add .travis.yml change to RELEASE_PROCESS --- RELEASE_PROCESS.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'RELEASE_PROCESS.md') diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 6873be49..51b9c4d0 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -20,7 +20,20 @@ git checkout master git pull origin master git checkout -b release-$LAST_WALLABAG_RELEASE SYMFONY_ENV=prod composer up --no-dev -git add --force composer.lock +``` + +- Update `.travis.yml` file and replace the composer line with this one: + +```diff +script: +- - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist ++ - travis_wait composer update --no-interaction --no-progress +``` + +- Then continue with these commands: + +``` +git add --force composer.lock .travis.yml git commit -m "Release wallabag $LAST_WALLABAG_RELEASE" git push origin release-$LAST_WALLABAG_RELEASE ``` -- cgit v1.2.3