From ee8aa5440f0e49030ff68bcefbaf913b9893ba69 Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Mon, 8 Aug 2016 15:51:08 -0300 Subject: [PATCH] docs: fix the version (release) number used by sphinx Sphinx actually use the contents of the `release` variable as the user visible version number, so release here is very different from, say, a RPM release number. Let's set the release number to the very same version number. Signed-off-by: Cleber Rosa --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index cba7be76..9c304fdf 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -98,7 +98,7 @@ project = u'Avocado' copyright = u'2014-2015, Red Hat' version = VERSION -release = '0' +release = VERSION if not ON_RTD: # only import and set the theme if we're building docs locally try: -- GitLab