summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 25 insertions, 0 deletions
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