From a0e87df99759f80c5d9812d8f0ca3b9f5be5c9b5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 17 Jul 2014 01:24:20 -0400 Subject: [PATCH] Bump version --- README.rst | 2 +- docs/intro/installation.rst | 2 +- mayan/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 38754eaea3..51f49833df 100644 --- a/README.rst +++ b/README.rst @@ -34,7 +34,7 @@ To install **Mayan EDMS**, simply do: $ virtualenv venv $ source venv/bin/activate - $ pip install mayan-edms==1.0.rc1 + $ pip install mayan-edms==1.0.rc2 Instead of using the usual ./manage.py use the alias mayan-edms.py: diff --git a/docs/intro/installation.rst b/docs/intro/installation.rst index aeae158436..3dd79dc550 100644 --- a/docs/intro/installation.rst +++ b/docs/intro/installation.rst @@ -21,7 +21,7 @@ Initialize a ``virtualenv`` to deploy the project: $ virtualenv venv $ source venv/bin/activate - $ pip install mayan-edms==1.0.rc1 + $ pip install mayan-edms==1.0.rc2 By default **Mayan EDMS** will create a single file SQLite_ database, which makes it very easy to start using **Mayan EDMS**. Populate the database with the project's schema doing: diff --git a/mayan/__init__.py b/mayan/__init__.py index ec6c4bdf69..a8612c344d 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,5 +1,5 @@ __title__ = 'Mayan EDMS' -__version__ = '1.0 rc1' +__version__ = '1.0 rc2' __build__ = 0x010000 __author__ = 'Roberto Rosario' __license__ = 'Apache 2.0'