]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - doc/md/Release-Shaarli.md
Merge pull request #1552 from ArthurHoaro/feature/better-initializer
[github/shaarli/Shaarli.git] / doc / md / Release-Shaarli.md
index bb2b3b5cb4c90dd36dfccb3783b7141638ab04d7..e22eabc9f32af872d7771a3cda37391261fc6464 100644 (file)
@@ -26,6 +26,7 @@ GitHub allows drafting the release note for the upcoming release, from the [Rele
 This file should contain the same information as the release note draft for the upcoming version.
 
 Update it to:
+
 - add new entries (additions, fixes, etc.)
 - mark the current version as released by setting its date and link
 - add a new section for the future unreleased version
@@ -45,23 +46,10 @@ TBA
 
 
 ## Increment the version code, update docs, create and push a signed tag
-### Generate documentation
+### Update the list of Git contributors
 ```bash
-$ cd /path/to/shaarli
-
-# create a new branch
-$ git fetch upstream
-$ git checkout upstream/master -b v0.5.0
-
-# rebuild the HTML documentation from Markdown
-$ make htmlpages
-
-# commit the changes
-$ git add doc
-$ git commit -s -m "Generate documentation for v0.5.0"
-
-# push the commit on your GitHub fork
-$ git push origin v0.5.0
+$ make authors
+$ git commit -s -m "Update AUTHORS"
 ```
 
 ### Create and merge a Pull Request
@@ -69,7 +57,7 @@ This one is pretty straightforward ;-)
 
 ### Bump Shaarli version to v0.x branch
 
-```
+```bash
 $ git checkout master
 $ git fetch upstream
 $ git pull upstream master