From e25a465ae9172030ce5b8c187ab403513b1396b4 Mon Sep 17 00:00:00 2001 From: Michael Hoffmann Date: Tue, 3 Oct 2023 14:07:42 +0200 Subject: [PATCH] Remove depreacted code --- sentry.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sentry.go b/sentry.go index a727b5584..f12b61e3f 100644 --- a/sentry.go +++ b/sentry.go @@ -5,17 +5,9 @@ import ( "time" ) -// The version of the SDK. -// Deprecated: To be removed in 0.25.0. Use SDKVersion instead. -const Version = SDKVersion - // The version of the SDK. const SDKVersion = "0.24.1" -// The identifier of the SDK. -// Deprecated: To be removed in 0.25.0. Use Client.GetSDKIdentifier() instead. -const SDKIdentifier = "sentry.go" - // apiVersion is the minimum version of the Sentry API compatible with the // sentry-go SDK. const apiVersion = "7"