summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorDurham Hale <[email protected]>2012-08-28 22:29:33 +0100
committerDurham Hale <[email protected]>2012-08-28 22:29:33 +0100
commit5f9a7b4f73dafc55683b607ac5af7cdca64a5d8f (patch)
treecfc3fdc704f9a08a719d0f6cb339227132b45f2c /README.markdown
parent4a25fa7837d5e177e2a414c5e893063169b90d7d (diff)
Update Changelog with new features from merged pull requests
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index cccccd3..d18ba4e 100644
--- a/README.markdown
+++ b/README.markdown
@@ -41,6 +41,12 @@ Changelog
* Fix bug in quoting column wildcard. j4mie/paris#12
* Small documentation improvements
+#### 1.2.0 - release 2012-XX-XX
+
+* Add `order_by_expr` method [sandermarechal]
+* Add support for raw queries without parameters argument [sandermarechal]
+* Add support to set multiple properties at once by passing an associative to `set` method [sandermarechal]
+
Philosophy
----------
@@ -348,7 +354,7 @@ To update the database, change one or more of the properties of the object, then
// This is equivalent to the above two assignments
$person->set(array(
'name' => 'Bob Smith',
- 'age' => 20,
+ 'age' => 20
));
// Syncronise the object with the database