Permalink
Browse files

Bump version to 0.2.0-RC2, introduce changelog.

  • Loading branch information...
1 parent 9f18660 commit 7eef5ad822c623652fa0ce0ee8fc5d5f8ce2966a @mmcgrana committed Jul 6, 2010
Showing with 20 additions and 2 deletions.
  1. +18 −0 HISTORY.md
  2. +1 −1 project.clj
  3. +1 −1 test/fleetdb/server_test.clj
View
18 HISTORY.md
@@ -0,0 +1,18 @@
+## 0.2.0-RC2 (2010-07-09)
+
+* Put temporary snapshot and compact files in the same directory as the corresponding main files instead of /tmp
+* Fix bug in in checking of empty logs
+* Fix bug in compaction
+* Provide more visibility into errors occurring in spawned threads
+
+## 0.2.0-RC1 (2010-03-06)
+
+* Introduce `not-in` where condition
+* Introduce `distinct` query qualifier
+* Introduce `clear` query
+* Optimize `count` queries
+* Introduce `drop-collection` query
+* More explicitly handle type mismatch errors
+* Check the log for integrity on startup, repairing if necessary
+* Allow comparison of boolean values
+* Introduce `-x <password>` command line option to require client authentication
View
2 project.clj
@@ -1,4 +1,4 @@
-(defproject fleetdb "0.2.0-RC1"
+(defproject fleetdb "0.2.0-RC2"
:description "A schema-free database optimized for agile development."
:url "http://github.com/mmcgrana/fleetdb"
:source-path "src/clj"
View
2 test/fleetdb/server_test.clj
@@ -43,7 +43,7 @@
(deftest "info"
(with-client client 3400
(client-write client "[\"info\"]\r\n")
- (assert= "[0,{\"persistent\":false,\"fleetdb-version\":\"0.2.0-RC1\"}]\r\n"
+ (assert= "[0,{\"persistent\":false,\"fleetdb-version\":\"0.2.0-RC2\"}]\r\n"
(client-read client))))
(deftest "valid query"

0 comments on commit 7eef5ad

Please sign in to comment.