diff options
author | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-09-29 16:31:06 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@clearboxsystems.com.au> | 2013-09-29 16:31:06 +1000 |
commit | 5303220fad5340937895be4041e2aeeb61f67cff (patch) | |
tree | 82bdcec6d7f70003798910031aea15b837308663 | |
parent | e681f10764ce236e4926e346af978554babcdaa0 (diff) |
Add a bit of a changelog to the README
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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 |