South 0.5
I'm pleased to announce the release of South 0.5; this has been a long and exciting release, with many new features...
- ORM Freezing, a new feature inspired by Migratory, which lets you freeze the historical state of your current models into a migration so you can then use them via an ORM as if your models.py file existed at that point in time. There's a good description of how exactly this is used in part 3 of the new tutorial.
- Automatic change detection; using the frozen model states, South can now diff your current models.py file against how it looked last time you made a migration, and write a migration to make up the difference. This essentially allows django-evolution style hinting, and means you'll only have to manually write more advanced migrations. It's discussed more in part two of the new tutorial.
- A much more robust models.py parser, using the Python parser module. It's a dirty secret that South automatically makes migrations by directly examining your models' source code; however, the new parsing engine hits 99% of all Django use cases, and has provisions for custom hooks so more wacky fields (such as django-denorm's decorated-function-based-fields) can tell South their equivalent definitions.
- A move into a south/ subdirectory, to fit with Python packaging guidelines, and make South more friendly with environments such as buildout and pip.
I've been very excited about the new features for a while, as those who have talked to me will tell you, and thanks to those people who used the trunk releases and submitted a great set of bug reports, it's finally ready for general consumption!
Additionally, for those going to EuroDjangoCon, don't miss my talk on migrations next Monday; as well as South and its new features, I'll be covering and comparing django-evolution and a few other migration solutions.
Happy migrating!

comments
Good stuff! One typo: souurce -> source.
I'm looking forward to your talk at Eurodjangocon, and I'm sure I owe you several beers for your work. I'll be the guy handing out Bitbucket stickers :-)
Thanks, Jesper, typo corrected.
I'm keeping an eye on Bitbucket myself; if I do ever move to a DVCS it's likely to be Mercurial...
You rock!
The new release looks great. Can you throw this up on PyPI? It's easier to convince my colleagues to jump on board if they don't have to do any work to install it.
this is HUGE :D
thank you so much!
Thanks so much, we love south ;)
(+1 for bitbucket ASAP, it's sooo easier to track favourite projects then...)
Michael: PyPI updated. I really should remember to do that at release time.