aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTom Christie2014-11-07 20:10:15 +0000
committerTom Christie2014-11-07 20:10:15 +0000
commit59b30307e80fb26f2c7caa82492c78fe265b537e (patch)
treea537809ecccb95530f9105b6a94788e93ac22749 /docs
parent51d86a65055491df3fe0533f8e2e89237a51e379 (diff)
downloaddjango-rest-framework-59b30307e80fb26f2c7caa82492c78fe265b537e.tar.bz2
Fixes to release notes
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/3.0-announcement.md12
1 files changed, 3 insertions, 9 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md
index e8428bc2..272b730c 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -1,17 +1,11 @@
## Pre-release notes:
-The 3.0 release is now ready for some tentative testing and upgrades for super keen early adopters. You can install the development version directly from GitHub like so:
+The 3.0 release is now ready for some tentative testing and upgrades for early adopters. You can install the development version directly from GitHub like so:
- pip install https://github.com/tomchristie/django-rest-framework/archive/version-3.0.zip
+ pip install https://github.com/tomchristie/django-rest-framework/archive/master.zip
See the [Version 3.0 GitHub issue](https://github.com/tomchristie/django-rest-framework/pull/1800) for more details on remaining work.
-The most notable outstanding issues still to be resolved on the `version-3.0` branch are as follows:
-
-* Finish forms support for serializers and in the browsable API.
-* Optimisations for serializing primary keys.
-* Refine style of validation errors in some cases, such as validation errors in `ListField`.
-
**Your feedback on the upgrade process and 3.0 changes is hugely important!**
Please do get in touch via twitter, IRC, a GitHub ticket, or the discussion group.
@@ -237,7 +231,7 @@ To use writable nested serialization you'll want to declare a nested field on th
fields = ('username', 'email', 'profile')
def create(self, validated_data):
- profile_data = validated_data.pop['profile']
+ profile_data = validated_data.pop('profile')
user = User.objects.create(**validated_data)
Profile.objects.create(user=user, **profile_data)
return user