diff --git a/History.md b/History.md index 36dab3c..e79b4cd 100644 --- a/History.md +++ b/History.md @@ -1,6 +1,15 @@ # Release History for MDBX --- +## v0.2.0 [2021-03-19] Mahlon E. Smith + +Enhancement: + +- Support dup/clone. This has limited use, as there can only + be one open handle per process, but implemented in the interests + of avoiding unexpected behavior. + + ## v0.1.1 [2021-03-14] Mahlon E. Smith Bugfix: diff --git a/lib/mdbx.rb b/lib/mdbx.rb index eaa5a7f..8be9aa0 100644 --- a/lib/mdbx.rb +++ b/lib/mdbx.rb @@ -10,7 +10,7 @@ require 'mdbx_ext' module MDBX # The version of this gem. - VERSION = '0.1.1' + VERSION = '0.2.0' end # module MDBX