From 6d3bd13f6158e07e242b8b3876344c9e37c1f09c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Tue, 22 Aug 2023 10:23:04 +0200 Subject: [PATCH] v0.0.252 --- ginext/response.go | 2 +- goextVersion.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ginext/response.go b/ginext/response.go index 7c6bb68..7c12607 100644 --- a/ginext/response.go +++ b/ginext/response.go @@ -207,7 +207,7 @@ func Error(e error) HTTPResponse { func ErrWrap(e error, errorType exerr.ErrorType, msg string) HTTPResponse { return &jsonAPIErrResponse{ - err: exerr.FromError(exerr.Wrap(e, msg).WithStackSkip(2).WithType(errorType).Build()), + err: exerr.FromError(exerr.Wrap(e, msg).WithStackSkip(3).WithType(errorType).Build()), } } diff --git a/goextVersion.go b/goextVersion.go index 737bc23..c59ab28 100644 --- a/goextVersion.go +++ b/goextVersion.go @@ -1,5 +1,5 @@ package goext -const GoextVersion = "0.0.251" +const GoextVersion = "0.0.252" -const GoextVersionTimestamp = "2023-08-22T10:21:13+0200" +const GoextVersionTimestamp = "2023-08-22T10:23:04+0200"