Added `__version__` to `diaspy/__init__.py`; updated docs
authorMarek Marecki <triviuss@gmail.com>
Sat, 6 Jul 2013 10:31:39 +0000 (12:31 +0200)
committerMarek Marecki <triviuss@gmail.com>
Sat, 6 Jul 2013 10:31:39 +0000 (12:31 +0200)
Makefile
diaspy/__init__.py
docs/Makefile
docs/source/conf.py
docs/source/modules.rst

index 4bb76175aedb0414914e1b093eb5638a25833d56..d2d66b2fc148b3b0bc6b9c108a9ccfb0b2a36b29 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,4 +10,7 @@ test-python2:
        python2 -m unittest --verbose --catch --failfast tests.py
 
 clean:
-       rm -rv {*,.}/__pycache__/
+       rm -rv diaspy/__pycache__/
+       rm -rv diaspy/*.pyc
+       rm -rv ./__pycache__/
+       rm -rv *.pyc
index 172431a92f052ce29cd3f0bad715b738bb08577c..0d3caa3de47f7435c3e44b9024c2918e7d17471f 100644 (file)
@@ -4,3 +4,6 @@ import diaspy.streams as streams
 import diaspy.client as client
 import diaspy.people as people
 import diaspy.notifications as notifications
+
+
+__version__ = '0.2.0'
index e5c4c15764d08ed222c1af97dc8bd1b9d93b574a..024fa96ac73022f73ffd9b4b077a90061077544b 100644 (file)
@@ -39,7 +39,7 @@ help:
        @echo "  doctest    to run all doctests embedded in the documentation (if enabled)"
 
 clean:
-       -rm -rf $(BUILDDIR)/*
+       -rm -rvf $(BUILDDIR)/*
 
 html:
        $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
index e9d90fa850544533a7252c063935861320f5df72..b2551568a4e890b1b34ae6cfe6e14c9cc9674816 100644 (file)
@@ -51,9 +51,9 @@ copyright = '2013, Moritz Kiefer'
 # built documents.
 #
 # The short X.Y version.
-version = '0.0.1'
+version = '0.2.0'
 # The full version, including alpha/beta/rc tags.
-release = '0.0.1'
+release = '0.2.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index dcda9d0cc14fe34b33ab8dbdd6f0434f76f0a219..707a7ba9b70b40bd3bf896a556d9691261770357 100644 (file)
@@ -4,8 +4,10 @@ diaspy
 .. toctree::
    :maxdepth: 4
 
-   client
+   connection
    models
    streams
-   connection
    conversations
+   people
+   errors
+   client