Skip to content

Commit

Permalink
Version 26.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Oct 8, 2024
1 parent 4f1401a commit 6894074
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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:25.0.0'
compileOnly 'org.jetbrains:annotations:26.0.0'
}
```

or in the `build.gradle.kts` file (Kotlin DSL)
```
dependencies {
compileOnly("org.jetbrains:annotations:25.0.0")
compileOnly("org.jetbrains:annotations:26.0.0")
}
```
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>25.0.0</version>
<version>26.0.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

projectVersion=25.0.0
projectVersion=26.0.0
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.stdlib.default.dependency=false
Expand Down

0 comments on commit 6894074

Please sign in to comment.