From 2363969f795342a7d071b8ce276bf71912731ccb Mon Sep 17 00:00:00 2001 From: scott lewis Date: Fri, 29 Jul 2022 15:28:05 +0800 Subject: [PATCH] chore: prepare release v0.3.2 --- CHANGELOG.md | 11 +++++++++++ cmd/cmd.go | 2 +- pkg/http/status.go | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7d3196c..667cac0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -114,3 +114,14 @@ ### Features * feature: support gin middleware and grpc interceptor ([212](https://github.com/CECTC/dbpack/issues/212)) ([a74d1d2](https://github.com/CECTC/dbpack/commit/a74d1d201457bc394bdbf0364cb25657fca3e0e2)) + +## v0.3.1 + +### Features + +* feature: support customize request buffer size for http request ([218](https://github.com/CECTC/dbpack/issues/218)) ([593fd25](https://github.com/CECTC/dbpack/commit/593fd25981a28ce9c83ec49a6a1556e9961d49fe)) + +### Changes + +* chore: print ping failed err ([216](https://github.com/CECTC/dbpack/pull/216)) ([852a0f2](https://github.com/CECTC/dbpack/commit/852a0f21f76a270c4d5e8eba60e7c155f0f8edaa)) + diff --git a/cmd/cmd.go b/cmd/cmd.go index 12124d15..123aacc7 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -56,7 +56,7 @@ func main() { } var ( - Version = "0.3.1" + Version = "0.3.2" defaultHTTPListenPort = 18888 appName = "dbpack" diff --git a/pkg/http/status.go b/pkg/http/status.go index f7738254..4260009f 100644 --- a/pkg/http/status.go +++ b/pkg/http/status.go @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package http import (