Skip to content

Commit

Permalink
Merge pull request #27 from webability-go/late-night
Browse files Browse the repository at this point in the history
patch v0.2.3
  • Loading branch information
metalwolf authored Jun 3, 2020
2 parents f03975f + 54fa766 commit 6214b73
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion xbase.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion xrecords.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
Expand Down

0 comments on commit 6214b73

Please sign in to comment.