diff --git a/RELEASES b/RELEASES index 1f49880..b03a18e 100644 --- a/RELEASES +++ b/RELEASES @@ -1,3 +1,24 @@ +1.3.0 +===== + +Tagged on June 6, 2012 + + +Major Code Changes +------------------ +* Changed the way translations are created, modified and retrieved (see README) + + +Bugs Fixes and Small Enhancements +--------------------------------- +* None + + + +* * * + + + 1.2.5 ===== diff --git a/linguo/__init__.py b/linguo/__init__.py index 86fedc4..2e38f7e 100644 --- a/linguo/__init__.py +++ b/linguo/__init__.py @@ -1,5 +1,5 @@ """Linguo is a Django application that provides the ability to have multilingual models.""" -VERSION = (1, 2, 5) +VERSION = (1, 3, 0) __version__ = '.'.join(map(str, VERSION))