@@ -9,6 +9,8 @@ unobtrusive, efficient and reliable. On the technical side, it uses an automatic
99created `Translations Model ` to store translatable fields in arbitrary
1010languages with a foreign key to the main model, enabling fast queries.
1111
12+ Started in 2011, hvad has grown mature and is now used on large scale applications.
13+
1214Quick links:
1315
1416- `Documentation `_.
@@ -23,18 +25,19 @@ Features
2325* **Fast ** - no additional queries for reads, just an inner join to an indexed key.
2426* **Complete ** - supports relationships, custom managers, proxy models, and abstract models.
2527* **Batteries included ** - translation-enabled forms and admin are provided.
26- * **Reliable ** - more than 250 test cases and counting. |coverage | |build |
27- * **Compatible ** with Django 1.4 to 1.7, running Python 2.6+ or 3.3+ .
28+ * **Reliable ** - more than 270 test cases and counting. |coverage | |build |
29+ * **Compatible ** with Django 1.4 to 1.7, running Python 2.7, 3.3 or 3.4 .
2830
2931Releases
3032--------
3133
32- Starting from v0.4, django -hvad uses the same release pattern as Django. The
33- following versions are thus available:
34+ Django -hvad uses the same release pattern as Django. The following versions
35+ are thus available:
3436
3537* Stable branch 0.4, available through `PyPI `_ and git branch ``releases/0.4.x ``.
3638* Stable branch 0.5, available through `PyPI `_ and git branch ``releases/0.5.x ``.
37- * Development branch 0.6, available through git branch ``master ``.
39+ * Stable branch 1.0, available through `PyPI `_ and git branch ``releases/1.0.x ``.
40+ * Development branch 1.1, available through git branch ``master ``.
3841
3942Stable branches have minor bugfix releases as needed, with guaranteed compatibility.
4043See the `installation guide `_ for details, or have a look at the `release notes `_.
@@ -45,7 +48,7 @@ Example Use
4548 Book.objects.all()
4649
4750Compatible by default: returns all objects, without any translated fields attached.
48- Starting from v0.6 , default behavior can be overriden to work like next query:
51+ Starting from v1.0 , default behavior can be overriden to work like next query:
4952
5053 Book.objects.language().all()
5154
0 commit comments