Skip to content

Commit

Permalink
Merge pull request #119 from serjsysoev/v26_0_2
Browse files Browse the repository at this point in the history
Fix missing klibs for apple artifacts
  • Loading branch information
amaembo authored Jan 22, 2025
2 parents f79a61f + e5c5c67 commit 5ed7516
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.2
---
* Fixed missing klibs for apple artifacts.

Version 26.0.1
---
* Fixed sources.jar build (regression after 25.0.0)
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.1'
compileOnly 'org.jetbrains:annotations:26.0.2'
}
```

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

0 comments on commit 5ed7516

Please sign in to comment.