From b1d5d47b1fd1fa434e3c6b55ab80d7f0da444ec2 Mon Sep 17 00:00:00 2001 From: doug-martin Date: Wed, 24 Jul 2019 15:02:20 -0500 Subject: [PATCH] v7.4.0 * [FIXED] literalTime use t.UTC() , This behavior is different from the original sql.DB #106 - @chen56 * [ADDED] Add new method WithTx for Database #108 - @Xuyuanp --- HISTORY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 0f418e74..f7fc8185 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +## v7.4.0 + +* [FIXED] literalTime use t.UTC() , This behavior is different from the original sql.DB [#106](https://github.com/doug-martin/goqu/issues/106) - [chen56](https://github.com/chen56) +* [ADDED] Add new method WithTx for Database [#108](https://github.com/doug-martin/goqu/issues/108) - [Xuyuanp](https://github.com/Xuyuanp) + ## v7.3.1 * [ADDED] Exposed `goqu.NewTx` to allow creating a goqu tx directly from a `sql.Tx` instead of using `goqu.Database#Begin` [#95](https://github.com/doug-martin/goqu/issues/95)