Skip to content

Commit

Permalink
Merge pull request #89 from Thijsiez/master
Browse files Browse the repository at this point in the history
Update version to 24.0.1
  • Loading branch information
amaembo committed Mar 2, 2023
2 parents 0d08bfd + bf298f2 commit 784429a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
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:24.0.0'
compileOnly 'org.jetbrains:annotations:24.0.1'
}
```

or in the `build.gradle.kts` file (Kotlin DSL)
```
dependencies {
compileOnly("org.jetbrains:annotations:24.0.0")
compileOnly("org.jetbrains:annotations:24.0.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>24.0.0</version>
<version>24.0.1</version>
<scope>provided</scope>
</dependency>
```
Expand Down

0 comments on commit 784429a

Please sign in to comment.