diff --git a/CHANGELOG.md b/CHANGELOG.md index fe02b6f..39bae56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog === +Version 24.0.1 +--- +* Added `@Documented` annotation where it would be useful. + Version 24.0.0 --- * Added new annotation: `@CheckReturnValue`. diff --git a/README.md b/README.md index 0b6c71b..2c80d3f 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.0' + compileOnly 'org.jetbrains:annotations:24.0.1' } ``` @@ -25,7 +25,7 @@ dependencies { or in the `build.gradle.kts` file (Kotlin DSL) ``` dependencies { - compileOnly("org.jetbrains:annotations:24.0.0") + compileOnly("org.jetbrains:annotations:24.0.1") } ``` @@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`: org.jetbrains annotations - 24.0.0 + 24.0.1 provided ```