release 0.1.0
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABCgAGBQJUsWN6AAoJEA15HcjXN8HZqe0H/RVSiu+QklJyJyfG371qITQt HJShUYxJiJYs5phGnm37POj/d6my27LqV2Wm0T05/E6bnC9U+emgY8jOKWLOAYK3 z+Bh5lldkXd7uLr3DwT2RkG2WD38qx0B0EFEoIeTx+6k+sWOLOCtrHXPVhRPaRL3 /y1q5e0vcii9GxaW1iW53PVBf3Bd1Onpm3CvGpG4Im3pnrx1Jr+jKReAki1qqR5j oG+aaeOqbPAjraoeIzcavTtQg5AxlU6SgGNWJuScuhwoBnPCA4eLP90tgcP6rKJg 3pdFN/Qc1zNZu8BxVgvIVQglbP9qdu/z9aZGJsdJoA7Mi+vdMDNKSCmqZN81kP4= =U4Yy -----END PGP SIGNATURE----- Merge tag '0.1.0' release 0.1.0 * tag '0.1.0': define required environment variables for docs build set version number, add changelog entry
This commit is contained in:
commit
54bd226777
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
10
docs/conf.py
10
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.
|
||||
|
@ -54,9 +60,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.
|
||||
|
|
Loading…
Reference in a new issue