diff --git a/history.md b/history.md index 7300120..709e38f 100644 --- a/history.md +++ b/history.md @@ -1,5 +1,13 @@ # Lobos History +## 0.7 + + * Add support for creating indexes + * Improved compiler support for value expression + * Improved the analyzer to be able to use database specific information + schema + * Removed the global schema map + ## 0.6 * Support for altering tables diff --git a/project.clj b/project.clj index 8e13e09..304882f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject lobos "0.7.0-SNAPSHOT" +(defproject lobos "0.7.0" :description "A library to create and manipulate SQL database schemas." :dependencies [[org.clojure/clojure "1.2.0"] diff --git a/readme.md b/readme.md index 96e285b..7f95a3b 100644 --- a/readme.md +++ b/readme.md @@ -15,6 +15,8 @@ and consult the [history] to see what have been done. need to add the relevant JDBC driver manually. For SQLite you'll need a custom [SQLite JDBC driver]. +You may also be interested in joining the [Lobos Google Group]. + ## Usage Here's a quick overview of how it works in its current state. For more @@ -174,14 +176,14 @@ Lobos is available through Clojars. For the latest release, in Cake/Leiningen: - [lobos "0.7.0-SNAPSHOT"] + [lobos "0.7.0] in Maven: lobos lobos - 0.7.0-SNAPSHOT + 0.7.0 ## License @@ -196,3 +198,4 @@ the file epl-v10.html in the project root directory. [history]: https://github.com/budu/lobos/blob/master/history.md [SQLite JDBC driver]: https://github.com/budu/sqlitejdbc [commented code]: http://budu.github.com/lobos/doc/uberdoc.frontend.html +[Lobos Google Group]: http://groups.google.com/group/lobos-library diff --git a/roadmap.md b/roadmap.md index e9258a9..1c05710 100644 --- a/roadmap.md +++ b/roadmap.md @@ -14,10 +14,4 @@ You can have a look at the [wiki] for more details. * Support for migration -## 0.7 - - * Improve compiler support for value expression - * Probably rewrite the analyzer once again, maybe split it to another - project - [wiki]: https://github.com/budu/lobos/wiki