Bump version and cleanup for release.

FossilOrigin-Name: 5f0e4ea2518c222d3052ffd46f8b5a3a94c7139bce9bf47895a8ca0d632c9507
This commit is contained in:
Mahlon E. Smith 2021-03-14 23:30:09 +00:00
parent c0cd35e260
commit 07cda417c8
5 changed files with 11 additions and 6 deletions

View file

@ -1,6 +1,10 @@
# Release History for mdbx # Release History for MDBX
--- ---
## v0.1.0 [2021-03-14] Mahlon E. Smith <mahlon@martini.nu>
Initial public release.
## v0.0.1 [2020-12-16] Mahlon E. Smith <mahlon@martini.nu> ## v0.0.1 [2020-12-16] Mahlon E. Smith <mahlon@martini.nu>

View file

@ -4,6 +4,7 @@ ext/mdbx_ext/extconf.rb
ext/mdbx_ext/mdbx_ext.c ext/mdbx_ext/mdbx_ext.c
ext/mdbx_ext/mdbx_ext.h ext/mdbx_ext/mdbx_ext.h
ext/mdbx_ext/database.c ext/mdbx_ext/database.c
ext/mdbx_ext/stats.c
lib/mdbx.rb lib/mdbx.rb
lib/mdbx_ext.so
lib/mdbx/database.rb lib/mdbx/database.rb

View file

@ -634,7 +634,7 @@ rmdbx_set_subdb( int argc, VALUE *argv, VALUE self )
* MDBX::Database.open( path ) -> db * MDBX::Database.open( path ) -> db
* MDBX::Database.open( path, options ) -> db * MDBX::Database.open( path, options ) -> db
* MDBX::Database.open( path, options ) do |db| * MDBX::Database.open( path, options ) do |db|
* db... * db...
* end * end
* *
*/ */

View file

@ -117,7 +117,7 @@ reader_list_callback(
rb_hash_aset( reader, ID2SYM(rb_intern("slot")), rb_hash_aset( reader, ID2SYM(rb_intern("slot")),
INT2NUM( slot ) ); INT2NUM( slot ) );
rb_hash_aset( reader, ID2SYM(rb_intern("pid")), rb_hash_aset( reader, ID2SYM(rb_intern("pid")),
LONG2FIX( pid ) ); LONG2FIX( pid ) );
rb_hash_aset( reader, ID2SYM(rb_intern("thread")), rb_hash_aset( reader, ID2SYM(rb_intern("thread")),
LONG2FIX( thread ) ); LONG2FIX( thread ) );
rb_hash_aset( reader, ID2SYM(rb_intern("txnid")), rb_hash_aset( reader, ID2SYM(rb_intern("txnid")),

View file

@ -10,7 +10,7 @@ require 'mdbx_ext'
module MDBX module MDBX
# The version of this gem. # The version of this gem.
VERSION = '0.0.1' VERSION = '0.1.0'
end # module MDBX end # module MDBX