Updated gemspec and HISTORY
This commit is contained in:
parent
a00fb21d37
commit
6961b3f33d
17
HISTORY
17
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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue