From 0c0cf660e05c549599056206214d9ead72b13bd7 Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Fri, 16 Aug 2019 15:00:34 +0100 Subject: [PATCH] Basic docs on how to release --- docs/developing.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/developing.md b/docs/developing.md index f1cbdef0..00b8166d 100644 --- a/docs/developing.md +++ b/docs/developing.md @@ -107,3 +107,14 @@ $ make dep ## Debugging For instructions on using VS Code to debug the Duffle binary, see [the debugging document](debugging.md). + +## Creating a Release + +To create a release, simply push a tag and CI will do the rest. The tag should be of the form: +```console +..[-] +``` +Tags conform to [Semantic Versioning](https://semver.org/) in syntax and semantics, but must not start with `v`. + +Examples tags are: `0.3.0-beta.3` and `1.0.0`. +