]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - doc/md/Release-Shaarli.md
cce5e20942d967559451aba607b2809a8751d742
[github/shaarli/Shaarli.git] / doc / md / Release-Shaarli.md
1 See [Git - Maintaining a project - Tagging your
2 releases](http://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project#Tagging-Your-Releases).
3
4 ## Prerequisites
5 This guide assumes that you have:
6 - a GPG key matching your GitHub authentication credentials
7 - i.e., the email address identified by the GPG key is the same as the one in your `~/.gitconfig`
8 - a GitHub fork of Shaarli
9 - a local clone of your Shaarli fork, with the following remotes:
10 - `origin` pointing to your GitHub fork
11 - `upstream` pointing to the main Shaarli repository
12 - maintainer permissions on the main Shaarli repository, to:
13 - push the signed tag
14 - create a new release
15 - [Composer](https://getcomposer.org/) and [Pandoc](http://pandoc.org/) need to be installed
16
17 ## GitHub release draft and `CHANGELOG.md`
18 See http://keepachangelog.com/en/0.3.0/ for changelog formatting.
19
20 ### GitHub release draft
21 GitHub allows drafting the release note for the upcoming release, from the [Releases](https://github.com/shaarli/Shaarli/releases) page. This way, the release note can be drafted while contributions are merged to `master`.
22
23 ### `CHANGELOG.md`
24 This file should contain the same information as the release note draft for the upcoming version.
25
26 Update it to:
27 - add new entries (additions, fixes, etc.)
28 - mark the current version as released by setting its date and link
29 - add a new section for the future unreleased version
30
31 ```bash
32 $ cd /path/to/shaarli
33
34 $ nano CHANGELOG.md
35
36 [...]
37 ## vA.B.C - UNRELEASED
38 TBA
39
40 ## [vX.Y.Z](https://github.com/shaarli/Shaarli/releases/tag/vX.Y.Z) - YYYY-MM-DD
41 [...]
42 ```
43
44
45 ## Increment the version code, updated docs, create and push a signed tag
46 ### Generate documentation
47 ```bash
48 $ cd /path/to/shaarli
49
50 # create a new branch
51 $ git fetch upstream
52 $ git checkout upstream/master -b v0.5.0
53
54 # rebuild the documentation from the wiki
55 $ make htmldoc
56
57 # commit the changes
58 $ git add doc
59 $ git commit -s -m "Generate documentation for v0.5.0"
60
61 # push the commit on your GitHub fork
62 $ git push origin v0.5.0
63 ```
64
65 ### Create and merge a Pull Request
66 This one is pretty straightforward ;-)
67
68 ### Bump Shaarli version to v0.x branch
69
70 ```
71 $ git checkout master
72 $ git fetch upstream
73 $ git pull upstream master
74
75 # IF the branch doesn't exists
76 $ git checkout -b v0.5
77 # OR if the branch already exists
78 $ git checkout v0.5
79 $ git rebase upstream/master
80
81 # Bump shaarli version from dev to 0.5.0, **without the `v`**
82 $ vim shaarli_version.php
83 $ git add shaarli_version
84 $ git commit -s -m "Bump Shaarli version to v0.5.0"
85 $ git push upstream v0.5
86 ```
87
88 ### Create and push a signed tag
89 ```bash
90 # update your local copy
91 $ git checkout v0.5
92 $ git fetch upstream
93 $ git pull upstream v0.5
94
95 # create a signed tag
96 $ git tag -s -m "Release v0.5.0" v0.5.0
97
98 # push it to "upstream"
99 $ git push --tags upstream
100 ```
101
102 ### Verify a signed tag
103 [`v0.5.0`](https://github.com/shaarli/Shaarli/releases/tag/v0.5.0) is the first GPG-signed tag pushed on the Community Shaarli.
104
105 Let's have a look at its signature!
106
107 ```bash
108 $ cd /path/to/shaarli
109 $ git fetch upstream
110
111 # get the SHA1 reference of the tag
112 $ git show-ref tags/v0.5.0
113 f7762cf803f03f5caf4b8078359a63783d0090c1 refs/tags/v0.5.0
114
115 # verify the tag signature information
116 $ git verify-tag f7762cf803f03f5caf4b8078359a63783d0090c1
117 gpg: Signature made Thu 30 Jul 2015 11:46:34 CEST using RSA key ID 4100DF6F
118 gpg: Good signature from "VirtualTam <virtualtam@flibidi.net>" [ultimate]
119 ```
120
121 ## Publish the GitHub release
122 ### Update release badges
123 Update `README.md` so version badges display and point to the newly released Shaarli version(s), in the `master` branch.
124
125 ### Create a GitHub release from a Git tag
126 From the previously drafted release:
127 - edit the release notes (if needed)
128 - specify the appropriate Git tag
129 - publish the release
130 - profit!
131
132 ### Generate and upload all-in-one release archives
133 Users with a shared hosting may have:
134 - no SSH access
135 - no possibility to install PHP packages or server extensions
136 - no possibility to run scripts
137
138 To ease Shaarli installations, it is possible to generate and upload additional release archives,
139 that will contain Shaarli code plus all required third-party libraries.
140
141 **From the `v0.5` branch:**
142
143 ```bash
144 $ make release_archive
145 ```
146
147 This will create the following archives:
148 - `shaarli-vX.Y.Z-full.tar`
149 - `shaarli-vX.Y.Z-full.zip`
150
151 The archives need to be manually uploaded on the previously created GitHub release.
152
153 ### Update `stable` and `latest` branches
154
155 ```
156 $ git checkout latest
157 # latest release
158 $ git merge v0.5.0
159 # fix eventual conflicts
160 $ make test
161 $ git push upstream latest
162 $ git checkout stable
163 # latest previous major
164 $ git merge v0.4.5
165 # fix eventual conflicts
166 $ make test
167 $ git push upstream stable
168 ```