From 6ce322cecc859559ce8db271f8bdddd861dd7560 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sat, 10 Jan 2015 18:33:00 +0100 Subject: [PATCH 1/2] set version number, add changelog entry --- docs/changelog.rst | 2 ++ docs/conf.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 15a0c50..89d5688 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,4 +1,6 @@ Changelog ========= +* :release:`0.1.0 <2015-01-10>` +* :feature:`-` provide functionality to create and delete PostgreSQL users and databases * :feature:`-` initial project setup diff --git a/docs/conf.py b/docs/conf.py index bd9cefb..d860ade 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ copyright = u'2015 Jan Dittberner' # built documents. # # The short X.Y version. -version = '0.0' +version = '0.1' # The full version, including alpha/beta/rc tags. -release = '0.0.0' +release = '0.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. From be38e74ffbe74a61a5883f849bae32c8516b84b9 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sat, 10 Jan 2015 18:36:49 +0100 Subject: [PATCH 2/2] define required environment variables for docs build --- docs/conf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index d860ade..887623f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,6 +20,12 @@ import os # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath(os.path.join('..', 'gvapgsql'))) +os.environ['GVAPGSQL_BROKER_URL'] = 'amqp://localhost' +os.environ['GVAPGSQL_DBADMIN_HOST'] = 'localhost' +os.environ['GVAPGSQL_DBADMIN_PORT'] = '5432' +os.environ['GVAPGSQL_DBADMIN_USER'] = 'gvapgsql' +os.environ['GVAPGSQL_DBADMIN_PASSWORD'] = 'gvapgsql' + # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here.