Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
===

Version 26.0.2-1
---
* A technical release using the new Sonatype publication mechanism, see https://central.sonatype.org/publish/publish-portal-guide/

Version 26.0.2
---
* Fixed missing klibs for apple artifacts.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ using gradle write the following in the
`build.gradle` file (Groovy DSL)
```
dependencies {
compileOnly 'org.jetbrains:annotations:26.0.2'
compileOnly 'org.jetbrains:annotations:26.0.2-1'
}

```

or in the `build.gradle.kts` file (Kotlin DSL)
```
dependencies {
compileOnly("org.jetbrains:annotations:26.0.2")
compileOnly("org.jetbrains:annotations:26.0.2-1")
}

```
Expand All @@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`:
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>26.0.2</version>
<version>26.0.2-1</version>
<scope>provided</scope>
</dependency>
```
Expand Down