Skip to content

Commit

Permalink
Version 26.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amaembo committed Oct 14, 2024
1 parent 546095e commit f79a61f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 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 26.0.1
---
* Fixed sources.jar build (regression after 25.0.0)

Version 26.0.0
---
* Added new experimental annotation: `@NotNullByDefault`
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.0'
compileOnly 'org.jetbrains:annotations:26.0.1'
}
```

or in the `build.gradle.kts` file (Kotlin DSL)
```
dependencies {
compileOnly("org.jetbrains:annotations:26.0.0")
compileOnly("org.jetbrains:annotations:26.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>26.0.0</version>
<version>26.0.1</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=26.0.0
projectVersion=26.0.1
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.stdlib.default.dependency=false
Expand Down

0 comments on commit f79a61f

Please sign in to comment.