From 54fa766272e90beb21e350f198e470a6096a6f14 Mon Sep 17 00:00:00 2001 From: metalwolf Date: Wed, 3 Jun 2020 11:59:06 -0500 Subject: [PATCH] patch v0.2.3 --- README.md | 5 +++++ xbase.go | 2 +- xrecords.go | 1 - 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f67488f..f6390cc 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,11 @@ TO DO: Version Changes Control ======================= +v0.2.3 - 2020-06-03 +----------------------- +- Upgrade to xcore/v2 +- Modularization with go.mod + v0.2.2 - 2020-06-03 ----------------------- - Bug Corrected on Clonation of XRecord, it now consider XRecords (via interface Clone() XDatasetCollectionDef) as possible subset to clone too. diff --git a/xbase.go b/xbase.go index f9d060f..2d774ff 100644 --- a/xbase.go +++ b/xbase.go @@ -17,7 +17,7 @@ As of 2018/12/01, only postgres and mysql are supported for now const ( // Version of XDominion - VERSION = "0.2.2" + VERSION = "0.2.3" // The distinct supported databases DB_Postgres = "postgres" diff --git a/xrecords.go b/xrecords.go index e4323d6..d0cee09 100644 --- a/xrecords.go +++ b/xrecords.go @@ -136,7 +136,6 @@ func (r *XRecords) GetCollection(key string) (xcore.XDatasetCollectionDef, bool) func (r *XRecords) Clone() xcore.XDatasetCollectionDef { cloned := &XRecords{} - fmt.Println("cloning XRecords") for _, val := range *r { *cloned = append(*cloned, val.Clone()) }