diff --git a/.gitignore b/.gitignore index 4984243..d70b37d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,7 @@ *.egg *.egg-info .DS_Store +__pycache__ build +dist docs/_build diff --git a/docs/conf.py b/docs/conf.py index bd18ce3..747d5c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2009, 2010, 2011, 2012 Ben Kurtovic' # built documents. # # The short X.Y version. -version = '0.1' +version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.1' +release = '0.2.dev' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/earwigbot/__init__.py b/earwigbot/__init__.py index 696ce3f..8dca99f 100644 --- a/earwigbot/__init__.py +++ b/earwigbot/__init__.py @@ -32,9 +32,9 @@ details. This documentation is also available `online __author__ = "Ben Kurtovic" __copyright__ = "Copyright (C) 2009, 2010, 2011, 2012 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.1" +__version__ = "0.2.dev" __email__ = "ben.kurtovic@verizon.net" -__release__ = True +__release__ = False if not __release__: def _get_git_commit_id():