From 5303220fad5340937895be4041e2aeeb61f67cff Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Sun, 29 Sep 2013 16:31:06 +1000 Subject: Add a bit of a changelog to the README --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 1b30bae..49bda0e 100644 --- a/README.md +++ b/README.md @@ -206,6 +206,31 @@ of query being executed, and the compiled query (as vector of be the return value of the associated query function call (`deref`, `insert!`, `update!` or `delete!`). +## Changelog + +#### 0.1.1 + +* **Breaking:** Remove `having`, use `select` instead now + +* `sort` can now sort on expressions, not just table names + +* `union` and `intersection` queries will now have their `:fields` set + correctly + +* Provide `as-subobject` to help with renaming things with the dot + notation + + :::clojure + (-> (table :users) + (project [:id :username]) + (rename (as-subobject :user)) + deref) + ;; => {:user {:id 5 :username "username"}} + +#### 0.1.0 + +* Initial release, so everything's new + ## License Copyright © 2013 Carlo Zancanaro -- cgit v1.2.3