diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-09-01 18:32:27 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-09-01 18:38:55 +0200 |
| commit | 306d34873cff2722e209d8c6058f13eac1532a7b (patch) | |
| tree | 806857c982de3a7dc2864ebffbe4dd7d1f5fd546 /docs | |
| parent | 74c025d0285450bf277afbee095172af54562ab6 (diff) | |
Fixed #18212 -- Standardized arguments of GenericIPAddressField
Unlike other model fields, the newly introduced (1.4)
GenericIPAddressField did not accept verbose_name and name as the
first positional arguments. This commit fixes it.
Thanks Dan McGee for the report and the patch.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.4.2.txt | 14 | ||||
| -rw-r--r-- | docs/releases/index.txt | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/docs/releases/1.4.2.txt b/docs/releases/1.4.2.txt new file mode 100644 index 0000000000..6f2e9aca2e --- /dev/null +++ b/docs/releases/1.4.2.txt @@ -0,0 +1,14 @@ +========================== +Django 1.4.2 release notes +========================== + +*TO BE RELEASED* + +This is the second security release in the Django 1.4 series. + +Backwards incompatible changes +============================== + +* The newly introduced :class:`~django.db.models.GenericIPAddressField` + constructor arguments have been adapted to match those of all other model + fields. The first two keyword arguments are now verbose_name and name. diff --git a/docs/releases/index.txt b/docs/releases/index.txt index 75cdbbf90d..fa55a4d206 100644 --- a/docs/releases/index.txt +++ b/docs/releases/index.txt @@ -27,6 +27,7 @@ Final releases .. toctree:: :maxdepth: 1 + .. 1.4.2 (uncomment on release) 1.4.1 1.4 |
