From 400442f70ee56cafd4493b2ce64a294db9836509 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 28 Jul 2023 20:13:45 +0200 Subject: [PATCH] feat: Deprecate `Version` annotation --- .../kotlin/app/revanced/patcher/annotation/MetadataAnnotation.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/app/revanced/patcher/annotation/MetadataAnnotation.kt b/src/main/kotlin/app/revanced/patcher/annotation/MetadataAnnotation.kt index 7095a6d..5c59f2d 100644 --- a/src/main/kotlin/app/revanced/patcher/annotation/MetadataAnnotation.kt +++ b/src/main/kotlin/app/revanced/patcher/annotation/MetadataAnnotation.kt @@ -26,6 +26,7 @@ annotation class Description( * @param version The version of a [Patch]. */ @Target(AnnotationTarget.CLASS) +@Deprecated("This annotation is deprecated and will be removed in a future release.") annotation class Version( val version: String, )