aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-12 12:00:03 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-12 12:00:03 +0100
commit238a52693eb597b9c2d37073c7e3de03b65b6b30 (patch)
tree9424b95c07d63e6cd243c99158355658fc592fb2
parentAdded tag 3.8 for changeset 39c108ecfcd4 (diff)
downloadnewspipe-238a52693eb597b9c2d37073c7e3de03b65b6b30.tar.gz
newspipe-238a52693eb597b9c2d37073c7e3de03b65b6b30.tar.bz2
newspipe-238a52693eb597b9c2d37073c7e3de03b65b6b30.zip
Version 3.8. Indexed MongoDB full text search. New management page.
-rw-r--r--docs/conf.py6
-rwxr-xr-xsource/pyAggr3g470r.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 7169c56b..da0e5b2d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -41,16 +41,16 @@ master_doc = 'index'
# General information about the project.
project = u'pyAggr3g470r'
-copyright = u'2012, Cédric Bonhomme'
+copyright = u'2010-2013, Cédric Bonhomme'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = '3.7'
+version = '3.8'
# The full version, including alpha/beta/rc tags.
-release = '3.7'
+release = '3.8'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 6bc45bfd..8df0ce44 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 3.7 $"
+__version__ = "$Revision: 3.8 $"
__date__ = "$Date: 2010/01/29 $"
-__revision__ = "$Date: 2013/01/05 $"
+__revision__ = "$Date: 2013/01/12 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
bgstack15