Skip to content

Commit

Permalink
Version bump, readme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
neumond committed Feb 10, 2018
1 parent e1efa76 commit e414bdd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
Goals
=====

Sometimes you need generate a database diagram for your Django project.
Sometimes you need to generate a database diagram for your Django project.
`django-extensions`_ does this well,
but drops non-editable file such as PNG.
but drops non-editable file like PNG.
Even when you use SVG format you'll waste much time with bunch of objects that are not stitched together:
when you move a table, you'll need to move all connected arrows and captions.

Expand Down Expand Up @@ -39,7 +39,13 @@ And run

.. code:: bash
./manage.py make_diagram -a -e -o scheme
./manage.py make_diagram -e -o scheme my_app1 my_app2
./manage.py make_diagram -a -e -o scheme # all apps in project
./manage.py make_diagram -e -o scheme my_app1 my_app2 # specific apps
This will produce file *scheme.dia* in your project directory.

Compatibility
=============

Django >= 1.8 supported. In long term set of supported versions will be
in parity with official django support.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def is_register_command(a):

setup(
name='django-dia',
version='0.3.4',
version='0.4.0',
description='Generate .dia diagram of your django project\'s models',
long_description=longdesc,
url='https://github.com/neumond/django-dia',
Expand Down

0 comments on commit e414bdd

Please sign in to comment.