diff --git a/doc/manual/builtins.xml b/doc/manual/builtins.xml index 3eee36f2..c7ebcc9a 100644 --- a/doc/manual/builtins.xml +++ b/doc/manual/builtins.xml @@ -324,6 +324,16 @@ x: x + 456 + builtins.intersectAttrs + e1 e2 + + Return an attribute set consisting of the + attributes in the set e2 that also + exist in the set e1. + + + + builtins.isAttrs e diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml index bf79840d..81543d31 100644 --- a/doc/manual/release-notes.xml +++ b/doc/manual/release-notes.xml @@ -8,7 +8,7 @@ -
Release 0.13 (September NN, +<section xml:id="ssec-relnotes-0.13"><title>Release 0.13 (November 4, 2009) This is primarily a bug fix release. It has some new @@ -85,7 +85,25 @@ features: add a string to stack traces — useful for debugging), builtins.isBool, builtins.isString, - builtins.isInt. + builtins.isInt, + builtins.intersectAttrs. + + + + OpenSolaris support (Sander van der Burg). + + + + Stack traces are no longer displayed unless the + option is used. + + + + The scoping rules for inherit + (e) ... in recursive + attribute sets have changed. The expression + e can now refer to the attributes + defined in the containing set.