diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-11-09 10:27:56 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-11-09 10:27:56 -0200 |
commit | 321be0df19d4443a4f13ca9870782f7c4ece049f (patch) | |
tree | 2d470c94e0e90754f3fe64e1946fab261fed57ee /development.mdwn | |
parent | 99040f2368fb1391a8244e960e76a29b68a4cdf9 (diff) | |
parent | dc4c62e5bffc41a3a128440341078de9075bd856 (diff) | |
download | keyringer-321be0df19d4443a4f13ca9870782f7c4ece049f.tar.gz keyringer-321be0df19d4443a4f13ca9870782f7c4ece049f.tar.bz2 |
Imported Upstream version 0.4.0upstream_keyringer_0.4.0
Diffstat (limited to 'development.mdwn')
-rw-r--r-- | development.mdwn | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/development.mdwn b/development.mdwn index db67119..49a224c 100644 --- a/development.mdwn +++ b/development.mdwn @@ -8,20 +8,16 @@ Index Coding standards ---------------- +* Uses Semantic Versioning. * Respect the existing coding style. * Be clear: easy audability must be one of keyringer's requirements. -Development workflow --------------------- - -We use [git-flow](https://github.com/nvie/gitflow) for the development workflow. - Release workflow ---------------- Go to develop branch and start a new release - git flow release start VERSION + git checkout develop Prepare the source code: @@ -33,6 +29,10 @@ Create and upload a new release: make release +Tag the release: + + git tag -s $(VERSION) -m "Keyringer $(VERSION)" + Update the debian branch: make debian @@ -74,7 +74,7 @@ Test environment Setup: - keyringer test init ~/code/tests/keyringer + keyringer test init ~/temp/tests/keyringer Teardown: @@ -99,3 +99,4 @@ References * [Generating pristine tarballs from git repositories](http://joeyh.name/blog/entry/generating_pristine_tarballs_from_git_repositories/). * [Debian Packaging](https://wiki.debian.org/Packaging). * [Debian Upstream Guide](https://wiki.debian.org/UpstreamGuide). +* [DanielKahnGillmor/preferred_packaging - Debian Wiki](https://wiki.debian.org/DanielKahnGillmor/preferred_packaging). |