Skip to content

Commit

Permalink
bump to version: 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Nov 13, 2015
1 parent 8a11866 commit 49384fa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
12 changes: 10 additions & 2 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,21 @@ Install the package:
$ pip install ziggurat_foundations
You will also need to install one of supported bcrypt backends
like `bcrypt` or `py-bcrypt` (this is default solution ziggurat_foundations
expects).

.. code-block:: bash
$ pip install bcrypt
Now it's time to initialize your model structure with alembic.

You will first need to install alembic version **0.3.4** or above:
You will first need to install alembic:

.. code-block:: bash
$ pip install alembic>=0.3.4
$ pip install alembic>=0.7.0
After you obtain recent alembic you can now run your migrations against
database of your choice.
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
install_requires=[
"sqlalchemy",
"passlib>=1.6.1",
"bcrypt",
"paginate",
"paginate_sqlalchemy",
"alembic",
Expand Down
2 changes: 1 addition & 1 deletion ziggurat_foundations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = {'major': 0, 'minor': 6, 'patch': 1}
__version__ = {'major': 0, 'minor': 6, 'patch': 2}


class ModelProxy(object):
Expand Down

0 comments on commit 49384fa

Please sign in to comment.