diff --git a/CHANGELOG.md b/CHANGELOG.md index a58f626..5580acc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog === +Version 26.0.1 +--- +* Fixed sources.jar build (regression after 25.0.0) + Version 26.0.0 --- * Added new experimental annotation: `@NotNullByDefault` diff --git a/README.md b/README.md index 4676d56..50317ac 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:26.0.0' + compileOnly 'org.jetbrains:annotations:26.0.1' } ``` @@ -25,7 +25,7 @@ dependencies { or in the `build.gradle.kts` file (Kotlin DSL) ``` dependencies { - compileOnly("org.jetbrains:annotations:26.0.0") + compileOnly("org.jetbrains:annotations:26.0.1") } ``` @@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`: org.jetbrains annotations - 26.0.0 + 26.0.1 provided ``` diff --git a/gradle.properties b/gradle.properties index e23f7b7..ccf5eb4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ # limitations under the License. # -projectVersion=26.0.0 +projectVersion=26.0.1 kotlin.code.style=official kotlin.mpp.stability.nowarn=true kotlin.stdlib.default.dependency=false