From b41de54f50e463211c71435c0fd86edeb9e3a152 Mon Sep 17 00:00:00 2001 From: Tagir Valeev Date: Wed, 15 Nov 2023 12:16:41 +0100 Subject: [PATCH] Update README to 24.1.0 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2c80d3f..7849051 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ using gradle write the following in the `build.gradle` file (Groovy DSL) ``` dependencies { - compileOnly 'org.jetbrains:annotations:24.0.1' + compileOnly 'org.jetbrains:annotations:24.1.0' } ``` @@ -25,7 +25,7 @@ dependencies { or in the `build.gradle.kts` file (Kotlin DSL) ``` dependencies { - compileOnly("org.jetbrains:annotations:24.0.1") + compileOnly("org.jetbrains:annotations:24.1.0") } ``` @@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`: org.jetbrains annotations - 24.0.1 + 24.1.0 provided ```