Skip to content

Commit 5ed7516

Browse files
authored
Merge pull request #119 from serjsysoev/v26_0_2
Fix missing klibs for apple artifacts
2 parents f79a61f + e5c5c67 commit 5ed7516

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
===
33

4+
Version 26.0.2
5+
---
6+
* Fixed missing klibs for apple artifacts.
7+
48
Version 26.0.1
59
---
610
* Fixed sources.jar build (regression after 25.0.0)

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ using gradle write the following in the
1717
`build.gradle` file (Groovy DSL)
1818
```
1919
dependencies {
20-
compileOnly 'org.jetbrains:annotations:26.0.1'
20+
compileOnly 'org.jetbrains:annotations:26.0.2'
2121
}
2222
2323
```
2424

2525
or in the `build.gradle.kts` file (Kotlin DSL)
2626
```
2727
dependencies {
28-
compileOnly("org.jetbrains:annotations:26.0.1")
28+
compileOnly("org.jetbrains:annotations:26.0.2")
2929
}
3030
3131
```
@@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`:
3434
<dependency>
3535
<groupId>org.jetbrains</groupId>
3636
<artifactId>annotations</artifactId>
37-
<version>26.0.1</version>
37+
<version>26.0.2</version>
3838
<scope>provided</scope>
3939
</dependency>
4040
```

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
#
1616

17-
projectVersion=26.0.1
17+
projectVersion=26.0.2
1818
kotlin.code.style=official
1919
kotlin.mpp.stability.nowarn=true
2020
kotlin.stdlib.default.dependency=false

0 commit comments

Comments
 (0)