diff --git a/HISTORY b/HISTORY index a69f5b9..1cd33f5 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,20 @@ +1.0.4 2010-7-13 + +* Removed deprecated + - Cursor admin option + - DB#query + - DB#create_index (use Collection#create_index) + - DB#command only takes hash options now +* j2bson executable (neomantra) +* Fixed bson_ext compilation on Solaris (slyphon) +* System JS helpers (neovintage) +* Use one mutex per thread on pooled connections (cremes) +* Check for CursorNotFound response flag +* MapReduce can return raw command output using :raw +* BSON::OrderedHash equality with other Ruby hashes (Ryan Angilly) +* Fix for broken Socket.send with large payloads (Frédéric De Jaeger) +* Lots of minor improvements. See commmits. + 1.0.3 2010-6-15 * Optimiztion for BSON::OrderedHash diff --git a/bson.gemspec b/bson.gemspec index 9589355..1a0894c 100644 --- a/bson.gemspec +++ b/bson.gemspec @@ -13,10 +13,10 @@ Gem::Specification.new do |s| s.files = ['Rakefile', 'bson.gemspec', 'LICENSE.txt'] s.files += ['lib/bson.rb'] + Dir['lib/bson/**/*.rb'] - s.files += ['bin/b2json'] + s.files += ['bin/b2json', 'bin/j2bson'] s.test_files = Dir['test/mongo_bson/*.rb'] - s.executables = ['b2json'] + s.executables = ['b2json', 'j2bson'] s.has_rdoc = true