Skip to content

Commit

Permalink
Preparing 0.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmuellegger committed Feb 28, 2010
1 parent 6164b24 commit 6ef83d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -28,7 +28,7 @@ def split(self, *args, **kw):

setup(
name = 'django-autofixture',
version = '0.1.0pre1',
version = '0.1.0',
url = 'https://launchpad.net/django-autofixture',
license = 'BSD',
description = 'Provides tools to auto generate test data.',
Expand Down
2 changes: 2 additions & 0 deletions src/django_autofixture/tests.py
Expand Up @@ -76,9 +76,11 @@ class RelatedModel(models.Model):
limit_choices_to={'name__exact': 'foo'}, related_name='rel2',
null=True, blank=True)


class O2OModel(models.Model):
o2o = models.OneToOneField(SimpleModel)


class M2MModel(models.Model):
m2m = models.ManyToManyField(SimpleModel)

Expand Down

0 comments on commit 6ef83d8

Please sign in to comment.