From f9f8b427baa69945cc9cde7457e4757966536489 Mon Sep 17 00:00:00 2001 From: "mahlon@martini.nu" Date: Sat, 20 Mar 2021 01:14:50 +0000 Subject: [PATCH] Update for release. FossilOrigin-Name: 155e7377d02d37ce06b0302e92092be5e7931cb782532a62a9ebedf8a23704be --- History.md | 9 +++++++++ lib/mdbx.rb | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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